-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathComicRecompress.csproj
40 lines (35 loc) · 1.32 KB
/
ComicRecompress.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Services\ChainnerBackend.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Quartz" Version="3.13.0" >
<IsTrimmable>false</IsTrimmable>
</PackageReference>
<TrimmerRootAssembly Include="Quartz" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CliWrap" Version="3.6.6" />
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Pastel" Version="5.1.0" />
<PackageReference Include="SharpCompress" Version="0.37.2" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.5" />
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="2.1.4" />
</ItemGroup>
<ItemGroup>
<None Include="$(SolutionDir)chainsandmodels\**" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<PublishFiles Include="$(SolutionDir)chainsandmodels\**" />
</ItemGroup>
<Target Name="CopyFiles" BeforeTargets="BeforePublish">
<Copy SourceFiles="@(PublishFiles)" DestinationFolder="$(OutputDir)publish\win-x64" />
</Target>
</Project>