-
Notifications
You must be signed in to change notification settings - Fork 294
Expand file tree
/
Copy pathLinqToExcel.Tests.csproj
More file actions
68 lines (60 loc) · 2.46 KB
/
LinqToExcel.Tests.csproj
File metadata and controls
68 lines (60 loc) · 2.46 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net451;net46;netstandard2.0;netcoreapp3.1</TargetFrameworks>
<DebugType>portable</DebugType>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Platforms>AnyCPU;x86</Platforms>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="log4net" Version="2.0.11" />
<PackageReference Include="NUnit" Version="3.12.0" />
<PackageReference Include="NUnit.Console" Version="3.11.1" />
<PackageReference Include="NUnit.ConsoleRunner" Version="3.11.1" />
<PackageReference Include="NUnit.Extension.VSProjectLoader" Version="3.8.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net451' or '$(TargetFramework)' == 'net46'">
<Reference Include="System.Transactions" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1' or '$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Data.OleDb" Version="4.7.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\LinqToExcel\LinqToExcel.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="ExcelFiles\Companies.csv">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="ExcelFiles\Companies.xls">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="ExcelFiles\Companies.xlsb">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="ExcelFiles\Companies.xlsm">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="ExcelFiles\Companies.xlsx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="ExcelFiles\NamedRanges.xlsx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="ExcelFiles\NoHeader.csv">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="ExcelFiles\NoHeader.xls">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="ExcelFiles\EmptyRows.xls">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="ExcelFiles\WorksheetNames.xlsx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
</Project>