-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathARTFULWALL.csproj
More file actions
66 lines (60 loc) · 2.07 KB
/
Copy pathARTFULWALL.csproj
File metadata and controls
66 lines (60 loc) · 2.07 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
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>net7.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>disable</ImplicitUsings>
<StartupObject>ArtfulWall.Core.Program</StartupObject>
<UseWPF>true</UseWPF>
<Authors>Linus Yang</Authors>
<RootNamespace>ArtfulWall</RootNamespace>
<PackageIcon>icon.png</PackageIcon>
<RepositoryUrl>https://github.com/lcyang77/ArtfulWall-Wallpaper-album-cover.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Platforms>AnyCPU;x64</Platforms>
<AssemblyName>ArtfulWall</AssemblyName>
<!-- Removed self-contained deployment configurations -->
<PublishTrimmed>false</PublishTrimmed>
<ApplicationIcon>appicon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="appicon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="SixLabors.ImageSharp" Version="3.0.2" />
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="2.0.0" />
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="config.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="appicon.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="README_EN.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="Core\" />
<Folder Include="Models\" />
<Folder Include="Services\" />
<Folder Include="UI\" />
<Folder Include="Utils\" />
</ItemGroup>
</Project>