-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSuperAutoBackup.csproj
More file actions
34 lines (32 loc) · 1.29 KB
/
SuperAutoBackup.csproj
File metadata and controls
34 lines (32 loc) · 1.29 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<AssemblyName>SuperAutoBackup</AssemblyName>
<RootNamespace>SuperAutoBackup</RootNamespace>
<Version>1.0.0.0</Version>
<Authors>Programmer-MrWang</Authors>
<Description>ClassIsland 高级自动备份插件</Description>
<Copyright>© @Programmer-MrWang.</Copyright>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ClassIsland.Core" Version="2.0.0.1" />
<PackageReference Include="ClassIsland.PluginSdk" Version="2.0.0.1" />
<PackageReference Include="System.IO.Compression" Version="4.3.0" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="manifest.yml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="README.md">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="icon.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>