-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApiCodeGenerator.AsyncApi.Tests.csproj
More file actions
41 lines (34 loc) · 1.43 KB
/
ApiCodeGenerator.AsyncApi.Tests.csproj
File metadata and controls
41 lines (34 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<DefineConstants>$(DefineConstants);ASYNC_API</DefineConstants>
</PropertyGroup>
<ItemGroup>
<None Include="asyncApi\**\*.*" />
<Content Include="asyncApi\**\*.*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Templates\**\*.*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Compile Include="..\ApiCodeGenerator.OpenApi.Tests\DefaultTemplateFactoryTests.cs" Link="DefaultTemplateFactoryTests.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.0" />
<PackageReference Include="Moq" Version="4.18.2" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
<PackageReference Include="NUnit.Analyzers" Version="3.6.1" />
<PackageReference Include="coverlet.collector" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../../src/ApiCodeGenerator.AsyncApi/ApiCodeGenerator.AsyncApi.csproj" />
<ProjectReference Include="../../src/ApiCodeGenerator.Core/ApiCodeGenerator.Core.csproj" />
</ItemGroup>
</Project>