-
Notifications
You must be signed in to change notification settings - Fork 0
/
BoothWatcher.csproj
42 lines (34 loc) · 1.07 KB
/
BoothWatcher.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyVersion>2.7</AssemblyVersion>
<FileVersion>2.7</FileVersion>
<PackageVersion>2.7.0</PackageVersion>
<ApplicationIcon>Icon\store-logo-booth.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<None Remove="discord-webhook-client.dll" />
<None Remove="Publish\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="discord-webhook-client" Version="3.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
<ItemGroup>
<Reference Include="Deepl, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>Dependancies\Deepl.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Folder Include="GitImages" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Publish\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="Publish\**" />
</ItemGroup>
</Project>