-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApiCodeGenerator.OpenApi.Tests.csproj
More file actions
38 lines (31 loc) · 1.18 KB
/
ApiCodeGenerator.OpenApi.Tests.csproj
File metadata and controls
38 lines (31 loc) · 1.18 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<InternalsVisibleTo Include="DynamicProxyGenAssembly2" />
</ItemGroup>
<ItemGroup>
<None Remove="swagger\**\*.*" />
</ItemGroup>
<ItemGroup>
<Content Include="swagger\**\*.*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Templates\**\*.*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.1" />
<PackageReference Include="Moq" Version="4.18.2" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit.Analyzers" Version="3.3.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
<PackageReference Include="coverlet.collector" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\ApiCodeGenerator.OpenApi\ApiCodeGenerator.OpenApi.csproj" />
<ProjectReference Include="..\..\src\ApiCodeGenerator.Core\ApiCodeGenerator.Core.csproj" />
</ItemGroup>
</Project>