-
Notifications
You must be signed in to change notification settings - Fork 8
/
EPPlus.Samples.CSharp.csproj
108 lines (100 loc) · 4.27 KB
/
EPPlus.Samples.CSharp.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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>EPPlusSamples</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG;Core</DefineConstants>
</PropertyGroup>
<ItemGroup>
<None Remove="FormulaCalcSample.xlsx" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="EPPlus" Version="7.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Data.Common" Version="4.3.0" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
<PackageReference Include="System.Data.SQLite" Version="1.0.118" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<None Update=".gitignore">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="ChartsAndThemes\MainEvent.thmx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="EPPlusSample.sqlite">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="06-Formula calculation\01-Formula calculation\FormulaCalcSample.xlsx">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="SampleDb\EPPlusSampleDb.db">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Workbooks\1.09-Data\DataFile.xlsx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Workbooks\1.09-WorkbookWithExternalLinks.xlsx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Workbooks\2.5-LoadingData.xlsx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Workbooks\3.3-GraphTemplate.xlsx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="02-Import and export\03-Import export csv files\Sample2.3-1.txt">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="01-Workbook worksheet and ranges\03-Using async await\Importfile.txt">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="08-Encryption protection and VBA\02-VBA\VBA-Code\BattleshipSheet.txt">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="08-Encryption protection and VBA\02-VBA\VBA-Code\CodeModule.txt">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="08-Encryption protection and VBA\02-VBA\VBA-Code\ComputerPlayModule.txt">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="08-Encryption protection and VBA\02-VBA\VBA-Code\ShipClass.txt">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="08-Encryption protection and VBA\02-VBA\VBA-Code\ThisWorkbook.txt">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="Workbooks\1.02-ReadWorkbook.xlsx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Workbooks\1.03-Salesreport.xlsx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Workbooks\1.9-Tables.xlsx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Workbooks\2.5-ChartsAndThemes.xlsx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Workbooks\2.5-CreateAFileSystemReport.xlsx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Workbooks\2.5-Tables.xlsx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Workbooks\5.2-ExistingWorkbook.xlsx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Workbooks\Tables.xlsx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>