-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjectManager.csproj
More file actions
60 lines (54 loc) · 1.73 KB
/
ProjectManager.csproj
File metadata and controls
60 lines (54 loc) · 1.73 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>block.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<None Remove="app.png" />
<None Remove="box.png" />
<None Remove="github.png" />
<None Remove="ico.png" />
<None Remove="inkognito.png" />
<None Remove="pause.png" />
<None Remove="Projects.xaml.cs~RF758832.TMP" />
<None Remove="pvh2sogy.zdo~" />
<None Remove="search.png" />
<None Remove="stop.png" />
</ItemGroup>
<ItemGroup>
<Content Include="app.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="block.ico" />
</ItemGroup>
<ItemGroup>
<Content Include="box.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="github.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="pause.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="search.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="stop.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<EmbeddedResource Include="ico.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Content Include="inkognito.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>