-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuDrop.csproj
60 lines (52 loc) · 1.85 KB
/
uDrop.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageIcon>icon.ico</PackageIcon>
<SignAssembly>False</SignAssembly>
<ErrorReport>none</ErrorReport>
<PlatformTarget>x64</PlatformTarget>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
<EnableNETAnalyzers>False</EnableNETAnalyzers>
<StartupObject></StartupObject>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Optimize>False</Optimize>
<IsPublishable>False</IsPublishable>
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<Optimize>False</Optimize>
<IsPublishable>False</IsPublishable>
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
<DebugType>embedded</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Code\java\**" />
<Compile Remove="SignKey\**" />
<EmbeddedResource Remove="Code\java\**" />
<EmbeddedResource Remove="SignKey\**" />
<None Remove="Code\java\**" />
<None Remove="SignKey\**" />
</ItemGroup>
<ItemGroup>
<None Remove=".gitignore" />
<None Remove="LICENSE" />
<None Remove="README.md" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="HtmlAgilityPack" Version="1.11.72" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<Content Include="AppIntegrations\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Libs\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>