forked from loafle/openapi-generator-original
* add .net9 support * fixed path of new sample * comment out manual test that does not exist * comment out manual test that does not exist * comment out manual test that does not exist
21 lines
662 B
XML
21 lines
662 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<AssemblyName>Org.OpenAPITools.Test</AssemblyName>
|
|
<RootNamespace>Org.OpenAPITools.Test</RootNamespace>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<IsPackable>false</IsPackable>
|
|
<Nullable>annotations</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
|
|
<PackageReference Include="xunit" Version="2.9.2" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Org.OpenAPITools\Org.OpenAPITools.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|