Skip to content

Commit 0540793

Browse files
authored
bump: Update test libraries (#77)
1 parent 59244c6 commit 0540793

File tree

5 files changed

+153
-156
lines changed

5 files changed

+153
-156
lines changed

src/Compiling/Compiling.csproj

Lines changed: 43 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,43 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<PackageId>Azure.ApiManagement.PolicyToolkit.Compiling</PackageId>
5-
<PackageVersion>0.0.1</PackageVersion>
6-
<FileVersion>0.0.1</FileVersion>
7-
<AssemblyVersion>0.0.1</AssemblyVersion>
8-
<InformationalVersion>0.0.1</InformationalVersion>
9-
<Authors>Microsoft</Authors>
10-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
11-
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
12-
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
13-
<PackageProjectUrl>https://github.com/Azure/azure-api-management-policy-toolkit</PackageProjectUrl>
14-
<RepositoryUrl>https://github.com/Azure/azure-api-management-policy-toolkit</RepositoryUrl>
15-
<Description>
16-
Azure API Management Policy Toolkit Compiling is a dotnet tool allowing you to transform policy document(s) from C# code to XML.
17-
Read more about it at https://github.com/Azure/azure-api-management-policy-toolkit
18-
</Description>
19-
<PackageTags>Azure;Azure API Management;API Gateway;API Management;Policy;Policies;Policy Toolkit;Compiling;Policy Toolkit Compiling</PackageTags>
20-
</PropertyGroup>
21-
22-
<PropertyGroup>
23-
<OutputType>Exe</OutputType>
24-
<TargetFramework>.net8</TargetFramework>
25-
<ImplicitUsings>enable</ImplicitUsings>
26-
<Nullable>enable</Nullable>
27-
<RootNamespace>Azure.ApiManagement.PolicyToolkit.Compiling</RootNamespace>
28-
29-
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
30-
<PackAsTool>true</PackAsTool>
31-
<ToolCommandName>azure-apim-policy-compiler</ToolCommandName>
32-
<PackageOutputPath>..\..\output</PackageOutputPath>
33-
</PropertyGroup>
34-
35-
<ItemGroup>
36-
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="9.0.1"/>
37-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0"/>
38-
</ItemGroup>
39-
40-
<ItemGroup>
41-
<ProjectReference Include="..\Core\Core.csproj"/>
42-
</ItemGroup>
43-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<PackageId>Azure.ApiManagement.PolicyToolkit.Compiling</PackageId>
5+
<PackageVersion>0.0.1</PackageVersion>
6+
<FileVersion>0.0.1</FileVersion>
7+
<AssemblyVersion>0.0.1</AssemblyVersion>
8+
<InformationalVersion>0.0.1</InformationalVersion>
9+
<Authors>Microsoft</Authors>
10+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
11+
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
12+
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
13+
<PackageProjectUrl>https://github.com/Azure/azure-api-management-policy-toolkit</PackageProjectUrl>
14+
<RepositoryUrl>https://github.com/Azure/azure-api-management-policy-toolkit</RepositoryUrl>
15+
<Description>
16+
Azure API Management Policy Toolkit Compiling is a dotnet tool allowing you to transform policy document(s) from C# code to XML.
17+
Read more about it at https://github.com/Azure/azure-api-management-policy-toolkit
18+
</Description>
19+
<PackageTags>Azure;Azure API Management;API Gateway;API Management;Policy;Policies;Policy Toolkit;Compiling;Policy Toolkit Compiling</PackageTags>
20+
</PropertyGroup>
21+
22+
<PropertyGroup>
23+
<OutputType>Exe</OutputType>
24+
<TargetFramework>.net8</TargetFramework>
25+
<ImplicitUsings>enable</ImplicitUsings>
26+
<Nullable>enable</Nullable>
27+
<RootNamespace>Azure.ApiManagement.PolicyToolkit.Compiling</RootNamespace>
28+
29+
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
30+
<PackAsTool>true</PackAsTool>
31+
<ToolCommandName>azure-apim-policy-compiler</ToolCommandName>
32+
<PackageOutputPath>..\..\output</PackageOutputPath>
33+
</PropertyGroup>
34+
35+
<ItemGroup>
36+
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="9.0.1"/>
37+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0"/>
38+
</ItemGroup>
39+
40+
<ItemGroup>
41+
<ProjectReference Include="..\Core\Core.csproj"/>
42+
</ItemGroup>
43+
</Project>

src/Testing/Testing.csproj

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<PackageId>Azure.ApiManagement.PolicyToolkit.Testing</PackageId>
5-
<PackageVersion>0.0.1</PackageVersion>
6-
<Authors>Microsoft</Authors>
7-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
8-
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
9-
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
10-
<PackageProjectUrl>https://github.com/Azure/azure-api-management-policy-toolkit</PackageProjectUrl>
11-
<RepositoryUrl>https://github.com/Azure/azure-api-management-policy-toolkit</RepositoryUrl>
12-
<Description>
13-
Azure API Management Policy Toolkit Testing is a library which helps in testing expressions and policy documents created in code.
14-
Read more about it at https://github.com/Azure/azure-api-management-policy-toolkit
15-
</Description>
16-
<PackageTags>Azure;Azure API Management;API Gateway;API Management;Policy;Policies;Policy Toolkit;Policy Testing;Policy Expression Testing</PackageTags>
17-
</PropertyGroup>
18-
19-
<PropertyGroup>
20-
<TargetFramework>.net8</TargetFramework>
21-
<ImplicitUsings>enable</ImplicitUsings>
22-
<Nullable>enable</Nullable>
23-
<IsPackable>true</IsPackable>
24-
<PackageOutputPath>..\..\output</PackageOutputPath>
25-
<IncludeBuildOutput>true</IncludeBuildOutput>
26-
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
27-
<SuppressDependenciesWhenPacking>false</SuppressDependenciesWhenPacking>
28-
<RootNamespace>Azure.ApiManagement.PolicyToolkit.Testing</RootNamespace>
29-
</PropertyGroup>
30-
31-
<ItemGroup>
32-
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
33-
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="8.3.1" />
34-
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.3.1" />
35-
</ItemGroup>
36-
37-
<ItemGroup>
38-
<ProjectReference Include="..\Authoring\Authoring.csproj" />
39-
</ItemGroup>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<PackageId>Azure.ApiManagement.PolicyToolkit.Testing</PackageId>
5+
<PackageVersion>0.0.1</PackageVersion>
6+
<Authors>Microsoft</Authors>
7+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
8+
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
9+
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
10+
<PackageProjectUrl>https://github.com/Azure/azure-api-management-policy-toolkit</PackageProjectUrl>
11+
<RepositoryUrl>https://github.com/Azure/azure-api-management-policy-toolkit</RepositoryUrl>
12+
<Description>
13+
Azure API Management Policy Toolkit Testing is a library which helps in testing expressions and policy documents created in code.
14+
Read more about it at https://github.com/Azure/azure-api-management-policy-toolkit
15+
</Description>
16+
<PackageTags>Azure;Azure API Management;API Gateway;API Management;Policy;Policies;Policy Toolkit;Policy Testing;Policy Expression Testing</PackageTags>
17+
</PropertyGroup>
18+
19+
<PropertyGroup>
20+
<TargetFramework>.net8</TargetFramework>
21+
<ImplicitUsings>enable</ImplicitUsings>
22+
<Nullable>enable</Nullable>
23+
<IsPackable>true</IsPackable>
24+
<PackageOutputPath>..\..\output</PackageOutputPath>
25+
<IncludeBuildOutput>true</IncludeBuildOutput>
26+
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
27+
<SuppressDependenciesWhenPacking>false</SuppressDependenciesWhenPacking>
28+
<RootNamespace>Azure.ApiManagement.PolicyToolkit.Testing</RootNamespace>
29+
</PropertyGroup>
30+
31+
<ItemGroup>
32+
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
33+
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="8.3.1" />
34+
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.3.1" />
35+
</ItemGroup>
36+
37+
<ItemGroup>
38+
<ProjectReference Include="..\Authoring\Authoring.csproj" />
39+
</ItemGroup>
4040
</Project>
Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
<PropertyGroup>
3-
<TargetFramework>.net8</TargetFramework>
4-
<ImplicitUsings>enable</ImplicitUsings>
5-
6-
<IsPackable>false</IsPackable>
7-
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
8-
</PropertyGroup>
9-
10-
<ItemGroup>
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0"/>
12-
<PackageReference Include="MSTest.TestAdapter" Version="3.7.0"/>
13-
<PackageReference Include="MSTest.TestFramework" Version="3.7.0"/>
14-
<PackageReference Include="coverlet.collector" Version="6.0.3"/>
15-
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.12.0"/>
16-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Analyzer.Testing.MSTest" Version="1.1.2"/>
17-
</ItemGroup>
18-
19-
<ItemGroup>
20-
<ProjectReference Include="..\..\src\Core\Core.csproj"/>
21-
<ProjectReference Include="..\..\src\Analyzers\Analyzers.csproj"/>
22-
</ItemGroup>
23-
24-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<TargetFramework>.net8</TargetFramework>
4+
<ImplicitUsings>enable</ImplicitUsings>
5+
6+
<IsPackable>false</IsPackable>
7+
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
8+
</PropertyGroup>
9+
10+
<ItemGroup>
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0"/>
12+
<PackageReference Include="MSTest" Version="3.7.2"/>
13+
<PackageReference Include="coverlet.collector" Version="6.0.3"/>
14+
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.12.0"/>
15+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Analyzer.Testing.MSTest" Version="1.1.2"/>
16+
</ItemGroup>
17+
18+
<ItemGroup>
19+
<ProjectReference Include="..\..\src\Core\Core.csproj"/>
20+
<ProjectReference Include="..\..\src\Analyzers\Analyzers.csproj"/>
21+
</ItemGroup>
22+
23+
</Project>

test/Test.Core/Test.Core.csproj

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
<PropertyGroup>
3-
<TargetFramework>.net8</TargetFramework>
4-
<ImplicitUsings>enable</ImplicitUsings>
5-
<Nullable>enable</Nullable>
6-
7-
<IsPackable>false</IsPackable>
8-
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
9-
</PropertyGroup>
10-
11-
<ItemGroup>
12-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0"/>
13-
<PackageReference Include="MSTest.TestAdapter" Version="3.7.0"/>
14-
<PackageReference Include="MSTest.TestFramework" Version="3.7.0"/>
15-
<PackageReference Include="coverlet.collector" Version="6.0.3"/>
16-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0"/>
17-
<PackageReference Include="FluentAssertions" Version="7.0.0"/>
18-
</ItemGroup>
19-
20-
<ItemGroup>
21-
<ProjectReference Include="..\..\src\Core\Core.csproj"/>
22-
</ItemGroup>
23-
24-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<TargetFramework>.net8</TargetFramework>
4+
<ImplicitUsings>enable</ImplicitUsings>
5+
<Nullable>enable</Nullable>
6+
7+
<IsPackable>false</IsPackable>
8+
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
9+
</PropertyGroup>
10+
11+
<ItemGroup>
12+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0"/>
13+
<PackageReference Include="MSTest" Version="3.7.2"/>
14+
<PackageReference Include="coverlet.collector" Version="6.0.3"/>
15+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0"/>
16+
<PackageReference Include="FluentAssertions" Version="7.0.0"/>
17+
</ItemGroup>
18+
19+
<ItemGroup>
20+
<ProjectReference Include="..\..\src\Core\Core.csproj"/>
21+
</ItemGroup>
22+
23+
</Project>
Lines changed: 25 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,25 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
7-
8-
<IsPackable>false</IsPackable>
9-
<IsTestProject>true</IsTestProject>
10-
<RootNamespace>Test.Emulator</RootNamespace>
11-
</PropertyGroup>
12-
13-
<ItemGroup>
14-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0"/>
15-
<PackageReference Include="MSTest.TestAdapter" Version="3.7.0"/>
16-
<PackageReference Include="MSTest.TestFramework" Version="3.7.0"/>
17-
<PackageReference Include="coverlet.collector" Version="6.0.3"/>
18-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0"/>
19-
<PackageReference Include="FluentAssertions" Version="7.0.0"/>
20-
</ItemGroup>
21-
22-
<ItemGroup>
23-
<ProjectReference Include="..\..\src\Testing\Testing.csproj" />
24-
</ItemGroup>
25-
26-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
8+
<IsPackable>false</IsPackable>
9+
<IsTestProject>true</IsTestProject>
10+
<RootNamespace>Test.Emulator</RootNamespace>
11+
</PropertyGroup>
12+
13+
<ItemGroup>
14+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0"/>
15+
<PackageReference Include="MSTest" Version="3.7.2"/>
16+
<PackageReference Include="coverlet.collector" Version="6.0.3"/>
17+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0"/>
18+
<PackageReference Include="FluentAssertions" Version="7.0.0"/>
19+
</ItemGroup>
20+
21+
<ItemGroup>
22+
<ProjectReference Include="..\..\src\Testing\Testing.csproj" />
23+
</ItemGroup>
24+
25+
</Project>

0 commit comments

Comments
 (0)