forked from ClosedXML/ClosedXML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClosedXML.Tests.csproj
41 lines (35 loc) · 1.48 KB
/
ClosedXML.Tests.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
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<LangVersion>11.0</LangVersion>
<TargetFrameworks>netcoreapp3.1;net462</TargetFrameworks>
<IsPackable>false</IsPackable>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<NoWarn>$(NoWarn);NU1605;CS1591;CS1658;CS1584;</NoWarn>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="**\*.xlsx" Exclude="**\~$*.xlsx;bin\**" />
<EmbeddedResource Include="**\*.xlsm" Exclude="**\~$*.xlsm;bin\**" />
<EmbeddedResource Include="Resource\Images\*.*" />
<EmbeddedResource Include="Resource\Fonts\*.*" />
<EmbeddedResource Include="Resource\Other\Unicode\let_it_go_in_emoji.txt" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.4.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
<PackageReference Include="NUnit" Version="3.13.1" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
</ItemGroup>
<ItemGroup>
<None Include="..\.editorconfig" Link=".editorconfig" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ClosedXML\ClosedXML.csproj" />
<ProjectReference Include="..\ClosedXML.Examples\ClosedXML.Examples.csproj" />
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="NUnit.Framework.SetCultureAttribute">
<_Parameter1>en-US</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
</Project>