-
Notifications
You must be signed in to change notification settings - Fork 3
/
Atc.XUnit.csproj
32 lines (26 loc) · 1015 Bytes
/
Atc.XUnit.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<PackageId>Atc.XUnit</PackageId>
<PackageTags>xunit;test</PackageTags>
<Description>Atc.XUnit is a collection of helper method for code compliance of documentation and tests.</Description>
</PropertyGroup>
<PropertyGroup>
<IsTestProject>false</IsTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="EPPlus" Version="7.4.0" />
<PackageReference Include="ICSharpCode.Decompiler" Version="8.2.0.7535" />
<PackageReference Include="Mono.Reflection" Version="2.0.0">
<NoWarn>NU1701</NoWarn>
</PackageReference>
<PackageReference Include="xunit" Version="2.9.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Atc.CodeDocumentation\Atc.CodeDocumentation.csproj" />
<ProjectReference Include="..\Atc\Atc.csproj" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Atc.XUnit.Tests" />
</ItemGroup>
</Project>