-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSkyziBackup.csproj
66 lines (66 loc) · 2.38 KB
/
SkyziBackup.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
61
62
63
64
65
66
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<Authors>Skyzi000</Authors>
<Copyright>Copyright (c) 2020 Skyzi000</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>SkyziBackup.ico</ApplicationIcon>
<Platforms>AnyCPU;x64;x86</Platforms>
<RepositoryUrl>https://github.com/skyzi000/SkyziBackup</RepositoryUrl>
<Nullable>enable</Nullable>
<RootNamespace />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<None Remove="NLog.config" />
<None Remove="SkyziBackup.ico" />
<None Remove="SkyziBackup_128.png" />
</ItemGroup>
<ItemGroup>
<Resource Include="LICENSE">
<Pack>True</Pack>
<PackagePath>
</PackagePath>
</Resource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="ModernWpfUI" Version="0.9.6" />
<PackageReference Include="NLog" Version="5.1.3" />
<PackageReference Include="Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers" Version="0.4.421302">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.Windows.Compatibility" Version="7.0.3" />
</ItemGroup>
<ItemGroup>
<Resource Include="NLog.config" />
<Resource Include="SkyziBackup.ico" />
<Resource Include="images\SkyziBackup_128.png" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<None Update="README.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>