Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
98 changes: 49 additions & 49 deletions src/Testing/Testing.csproj
Original file line number Diff line number Diff line change
@@ -1,50 +1,50 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.0.0</Version>
<PackageId>Microsoft.Azure.ApiManagement.PolicyToolkit.Testing</PackageId>
<Authors>Microsoft</Authors>
<Company>Microsoft Corporation</Company>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
<Product>Azure API Management Policy Toolkit</Product>
<PackageIcon>pkgicon.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<RepositoryUrl>https://github.com/Azure/azure-api-management-policy-toolkit</RepositoryUrl>
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
<Description>
Azure API Management Policy Toolkit Testing is a library which helps in testing expressions and policy documents created in code.
Read more about it at https://github.com/Azure/azure-api-management-policy-toolkit
</Description>
<PackageTags>Azure;Azure API Management;API Gateway;API Management;Policy;Policies;Policy Toolkit;Policy Testing;Policy Expression Testing</PackageTags>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<PropertyGroup>
<TargetFramework>.net8</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
<PackageOutputPath>..\..\output</PackageOutputPath>
<IncludeBuildOutput>true</IncludeBuildOutput>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<SuppressDependenciesWhenPacking>false</SuppressDependenciesWhenPacking>
<RootNamespace>Microsoft.Azure.ApiManagement.PolicyToolkit.Testing</RootNamespace>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="8.3.1" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.3.1" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Authoring\Authoring.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\docs\images\pkgicon.png" Pack="true" PackagePath="\"/>
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.0.0</Version>
<PackageId>Microsoft.Azure.ApiManagement.PolicyToolkit.Testing</PackageId>
<Authors>Microsoft</Authors>
<Company>Microsoft Corporation</Company>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
<Product>Azure API Management Policy Toolkit</Product>
<PackageIcon>pkgicon.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<RepositoryUrl>https://github.com/Azure/azure-api-management-policy-toolkit</RepositoryUrl>
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
<Description>
Azure API Management Policy Toolkit Testing is a library which helps in testing expressions and policy documents created in code.
Read more about it at https://github.com/Azure/azure-api-management-policy-toolkit
</Description>
<PackageTags>Azure;Azure API Management;API Gateway;API Management;Policy;Policies;Policy Toolkit;Policy Testing;Policy Expression Testing</PackageTags>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>.net8</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
<PackageOutputPath>..\..\output</PackageOutputPath>
<IncludeBuildOutput>true</IncludeBuildOutput>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<SuppressDependenciesWhenPacking>false</SuppressDependenciesWhenPacking>
<RootNamespace>Microsoft.Azure.ApiManagement.PolicyToolkit.Testing</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="8.15.0" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Authoring\Authoring.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\docs\images\pkgicon.png" Pack="true" PackagePath="\"/>
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>
Loading