Skip to content

Commit

Permalink
Merge pull request #989 from christianhelle/kiota-dependencies
Browse files Browse the repository at this point in the history
Update Kiota package references to version 1.12.4 in smoke tests
  • Loading branch information
christianhelle authored Sep 17, 2024
2 parents 2483b88 + b48704e commit c2a322f
Show file tree
Hide file tree
Showing 15 changed files with 109 additions and 181 deletions.
38 changes: 3 additions & 35 deletions .github/workflows/production-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -235,43 +235,11 @@ jobs:
working-directory: test

- name: Generate code with Kiota
run: |
rapicgen -v csharp kiota ./OpenApi.${{ matrix.format }} GeneratedCode ./GeneratedCode/Kiota/Output.cs --no-logging
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/Net6/Output.cs
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/Net7/Output.cs
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/Net48/Output.cs
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/Net472/Output.cs
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/Net462/Output.cs
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/Net481/Output.cs
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/NetStandard20/Output.cs
working-directory: test

- name: Build .NET 6 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/Net6/Net6.csproj
run: rapicgen -v csharp kiota ./OpenApi.${{ matrix.format }} GeneratedCode ./GeneratedCode/Kiota/Output.cs --no-logging
working-directory: test

- name: Build .NET 7 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/Net7/Net7.csproj
working-directory: test

- name: Build .NET 4.8.1 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/Net481/Net481.csproj
if: ${{ matrix.os == 'windows-2022' }}
working-directory: test

- name: Build .NET 4.8 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/Net48/Net48.csproj
working-directory: test

- name: Build .NET 4.7.2 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/Net472/Net472.csproj
working-directory: test

- name: Build .NET 4.6.2 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/Net462/Net462.csproj
working-directory: test
- name: Build .NET Standard 2.0 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/NetStandard20/NetStandard20.csproj
- name: Build Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/Kiota.sln
working-directory: test

JMeter:
Expand Down
44 changes: 3 additions & 41 deletions .github/workflows/regression-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -249,49 +249,11 @@ jobs:
working-directory: test

- name: Generate code with Kiota
run: |
dotnet run --project ../src/CLI/ApiClientCodeGen.CLI/ApiClientCodeGen.CLI.csproj -- -v csharp kiota ./OpenApi.${{ matrix.format }} GeneratedCode ./GeneratedCode/Kiota/Output.cs --no-logging
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/Net6/Output.cs
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/Net7/Output.cs
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/Net48/Output.cs
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/Net472/Output.cs
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/Net462/Output.cs
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/Net481/Output.cs
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/NetStandard20/Output.cs
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/NetStandard21/Output.cs
working-directory: test

- name: Build .NET 6 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/Net6/Net6.csproj
working-directory: test

- name: Build .NET 7 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/Net7/Net7.csproj
working-directory: test

- name: Build .NET 4.8.1 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/Net481/Net481.csproj
if: ${{ matrix.os == 'windows-2022' }}
working-directory: test

- name: Build .NET 4.8 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/Net48/Net48.csproj
working-directory: test

- name: Build .NET 4.7.2 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/Net472/Net472.csproj
working-directory: test

- name: Build .NET 4.6.2 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/Net462/Net462.csproj
working-directory: test

- name: Build .NET Standard 2.0 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/NetStandard20/NetStandard20.csproj
run: dotnet run --project ../src/CLI/ApiClientCodeGen.CLI/ApiClientCodeGen.CLI.csproj -- -v csharp kiota ./OpenApi.${{ matrix.format }} GeneratedCode ./GeneratedCode/Kiota/Output.cs --no-logging
working-directory: test

- name: Build .NET Standard 2.1 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/NetStandard21/NetStandard21.csproj
- name: Build Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/Kiota.sln
working-directory: test

- name: Generate code with Refitter
Expand Down
45 changes: 4 additions & 41 deletions .github/workflows/smoke-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ jobs:
6.0.x
7.0.x
8.0.x
9.0.x
- name: Prepare Swagger Petstore OpenAPI Spec
run: cp ./OpenAPI/${{ matrix.version }}/Swagger.${{ matrix.format }} ./OpenApi.${{ matrix.format }}
Expand Down Expand Up @@ -247,50 +248,12 @@ jobs:
working-directory: test

- name: Generate code with Kiota
run: |
dotnet run --project ../src/CLI/ApiClientCodeGen.CLI/ApiClientCodeGen.CLI.csproj -- -v csharp kiota ./OpenApi.${{ matrix.format }} GeneratedCode ./GeneratedCode/Kiota/Output.cs --no-logging
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/Net6/Output.cs
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/Net7/Output.cs
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/Net48/Output.cs
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/Net472/Output.cs
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/Net462/Output.cs
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/Net481/Output.cs
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/NetStandard20/Output.cs
cp ./GeneratedCode/Kiota/Output.cs ./GeneratedCode/Kiota/NetStandard21/Output.cs
run: dotnet run --project ../src/CLI/ApiClientCodeGen.CLI/ApiClientCodeGen.CLI.csproj -- -v csharp kiota ./OpenApi.${{ matrix.format }} GeneratedCode ./GeneratedCode/Kiota/Output.cs --no-logging
working-directory: test
continue-on-error: ${{ matrix.os == 'macos-12' }}

- name: Build .NET 6 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/Net6/Net6.csproj
working-directory: test

- name: Build .NET 7 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/Net7/Net7.csproj
working-directory: test

- name: Build .NET 4.8.1 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/Net481/Net481.csproj
if: ${{ matrix.os == 'windows-2022' }}
working-directory: test

- name: Build .NET 4.8 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/Net48/Net48.csproj
working-directory: test

- name: Build .NET 4.7.2 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/Net472/Net472.csproj
working-directory: test

- name: Build .NET 4.6.2 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/Net462/Net462.csproj
working-directory: test

- name: Build .NET Standard 2.0 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/NetStandard20/NetStandard20.csproj
working-directory: test

- name: Build .NET Standard 2.1 Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/NetStandard21/NetStandard21.csproj
- name: Build Kiota generated code
run: dotnet build ./GeneratedCode/Kiota/Kiota.sln
working-directory: test

- name: Generate code with Refitter
Expand Down
13 changes: 13 additions & 0 deletions test/GeneratedCode/Kiota/Directory.build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<Project>
<ItemGroup>
<Compile Include="../*.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.12.4" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.12.4" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.12.4" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.12.4" />
<PackageReference Include="Microsoft.Kiota.Serialization.Multipart" Version="1.12.4" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.12.4" />
</ItemGroup>
</Project>
76 changes: 76 additions & 0 deletions test/GeneratedCode/Kiota/Kiota.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Net462", "Net462\Net462.csproj", "{A4CC4741-A2A8-4F8A-B41A-844F63949625}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Net472", "Net472\Net472.csproj", "{8F0BA70C-F0CD-45DF-82B4-C85364C9F66E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Net48", "Net48\Net48.csproj", "{AAF5514B-BFC7-41EC-B57E-2C7C1191AC76}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Net481", "Net481\Net481.csproj", "{43E9EB91-1543-423A-8998-DFDA8FE3D8B9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Net6", "Net6\Net6.csproj", "{1E861F86-69F2-4A4A-B80E-D116E5AA10F9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Net7", "Net7\Net7.csproj", "{0CD12A0B-2B40-4E78-A2FD-6F481498AD44}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Net8", "Net8\Net8.csproj", "{E6C8F2A5-1EE2-4F92-A268-D3976EE2D8DB}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Net9", "Net9\Net9.csproj", "{F8504AFF-4EA9-4044-850B-6E6FE01FA73B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NetStandard20", "NetStandard20\NetStandard20.csproj", "{AB5F029F-88FA-40DC-9A3F-49BE8ED68923}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NetStandard21", "NetStandard21\NetStandard21.csproj", "{9A2DF2C7-3BDD-41C8-994F-9020F03B7A1C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A4CC4741-A2A8-4F8A-B41A-844F63949625}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A4CC4741-A2A8-4F8A-B41A-844F63949625}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A4CC4741-A2A8-4F8A-B41A-844F63949625}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A4CC4741-A2A8-4F8A-B41A-844F63949625}.Release|Any CPU.Build.0 = Release|Any CPU
{8F0BA70C-F0CD-45DF-82B4-C85364C9F66E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8F0BA70C-F0CD-45DF-82B4-C85364C9F66E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8F0BA70C-F0CD-45DF-82B4-C85364C9F66E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8F0BA70C-F0CD-45DF-82B4-C85364C9F66E}.Release|Any CPU.Build.0 = Release|Any CPU
{AAF5514B-BFC7-41EC-B57E-2C7C1191AC76}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AAF5514B-BFC7-41EC-B57E-2C7C1191AC76}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AAF5514B-BFC7-41EC-B57E-2C7C1191AC76}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AAF5514B-BFC7-41EC-B57E-2C7C1191AC76}.Release|Any CPU.Build.0 = Release|Any CPU
{43E9EB91-1543-423A-8998-DFDA8FE3D8B9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{43E9EB91-1543-423A-8998-DFDA8FE3D8B9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{43E9EB91-1543-423A-8998-DFDA8FE3D8B9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{43E9EB91-1543-423A-8998-DFDA8FE3D8B9}.Release|Any CPU.Build.0 = Release|Any CPU
{1E861F86-69F2-4A4A-B80E-D116E5AA10F9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1E861F86-69F2-4A4A-B80E-D116E5AA10F9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1E861F86-69F2-4A4A-B80E-D116E5AA10F9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1E861F86-69F2-4A4A-B80E-D116E5AA10F9}.Release|Any CPU.Build.0 = Release|Any CPU
{0CD12A0B-2B40-4E78-A2FD-6F481498AD44}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0CD12A0B-2B40-4E78-A2FD-6F481498AD44}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0CD12A0B-2B40-4E78-A2FD-6F481498AD44}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0CD12A0B-2B40-4E78-A2FD-6F481498AD44}.Release|Any CPU.Build.0 = Release|Any CPU
{E6C8F2A5-1EE2-4F92-A268-D3976EE2D8DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E6C8F2A5-1EE2-4F92-A268-D3976EE2D8DB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E6C8F2A5-1EE2-4F92-A268-D3976EE2D8DB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E6C8F2A5-1EE2-4F92-A268-D3976EE2D8DB}.Release|Any CPU.Build.0 = Release|Any CPU
{F8504AFF-4EA9-4044-850B-6E6FE01FA73B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F8504AFF-4EA9-4044-850B-6E6FE01FA73B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F8504AFF-4EA9-4044-850B-6E6FE01FA73B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F8504AFF-4EA9-4044-850B-6E6FE01FA73B}.Release|Any CPU.Build.0 = Release|Any CPU
{AB5F029F-88FA-40DC-9A3F-49BE8ED68923}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AB5F029F-88FA-40DC-9A3F-49BE8ED68923}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AB5F029F-88FA-40DC-9A3F-49BE8ED68923}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AB5F029F-88FA-40DC-9A3F-49BE8ED68923}.Release|Any CPU.Build.0 = Release|Any CPU
{9A2DF2C7-3BDD-41C8-994F-9020F03B7A1C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9A2DF2C7-3BDD-41C8-994F-9020F03B7A1C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9A2DF2C7-3BDD-41C8-994F-9020F03B7A1C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9A2DF2C7-3BDD-41C8-994F-9020F03B7A1C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
8 changes: 0 additions & 8 deletions test/GeneratedCode/Kiota/Net462/Net462.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,4 @@
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.9.7" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.4.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.2.5" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.3.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Multipart" Version="1.1.5" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.2.2" />
</ItemGroup>
</Project>
8 changes: 0 additions & 8 deletions test/GeneratedCode/Kiota/Net472/Net472.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,4 @@
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.9.7" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.4.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.2.5" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.3.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Multipart" Version="1.1.5" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.2.2" />
</ItemGroup>
</Project>
8 changes: 0 additions & 8 deletions test/GeneratedCode/Kiota/Net48/Net48.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,4 @@
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.9.7" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.4.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.2.5" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.3.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Multipart" Version="1.1.5" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.2.2" />
</ItemGroup>
</Project>
8 changes: 0 additions & 8 deletions test/GeneratedCode/Kiota/Net481/Net481.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,4 @@
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.9.7" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.4.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.2.5" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.3.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Multipart" Version="1.1.5" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.2.2" />
</ItemGroup>
</Project>
8 changes: 0 additions & 8 deletions test/GeneratedCode/Kiota/Net6/Net6.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,4 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.9.7" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.4.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.2.5" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.3.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Multipart" Version="1.1.5" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.2.2" />
</ItemGroup>
</Project>
8 changes: 0 additions & 8 deletions test/GeneratedCode/Kiota/Net7/Net7.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,4 @@
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.9.7" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.4.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.2.5" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.3.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Multipart" Version="1.1.5" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.2.2" />
</ItemGroup>
</Project>
5 changes: 5 additions & 0 deletions test/GeneratedCode/Kiota/Net8/Net8.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
</Project>
5 changes: 5 additions & 0 deletions test/GeneratedCode/Kiota/Net9/Net9.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>
</Project>
8 changes: 0 additions & 8 deletions test/GeneratedCode/Kiota/NetStandard20/NetStandard20.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,4 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.9.7" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.4.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.2.5" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.3.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Multipart" Version="1.1.5" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.2.2" />
</ItemGroup>
</Project>
8 changes: 0 additions & 8 deletions test/GeneratedCode/Kiota/NetStandard21/NetStandard21.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,4 @@
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.9.7" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.4.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.2.5" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.3.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Multipart" Version="1.1.5" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.2.2" />
</ItemGroup>
</Project>

0 comments on commit c2a322f

Please sign in to comment.