-
Notifications
You must be signed in to change notification settings - Fork 0
/
LBA1TextViewer.csproj
49 lines (43 loc) · 1.5 KB
/
LBA1TextViewer.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<IsPublishable>True</IsPublishable>
<ApplicationIcon>Shrug.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<!-- <Compile Remove="JSON\**" />
<Compile Remove="LBA1TextDump\**" />
<Compile Remove="LBA2TextDump\**" />
<Compile Remove="LBATextDump\**" />
<EmbeddedResource Remove="JSON\**" />
<EmbeddedResource Remove="LBA1TextDump\**" />
<EmbeddedResource Remove="LBA2TextDump\**" />
<EmbeddedResource Remove="LBATextDump\**" />
<None Remove="JSON\**" />
<None Remove="LBA1TextDump\**" />
<None Remove="LBA2TextDump\**" />
<None Remove="LBATextDump\**" /> -->
</ItemGroup>
<ItemGroup>
<Content Include="Shrug.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="EPPlus" Version="7.0.9" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<None Update="files\cleansedData.xlsx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="JSON\LBA1\ru-RU.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="JSON\LBA2\ru-RU.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>