This repository was archived by the owner on May 31, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDangerZoneHackerTracker.csproj
More file actions
119 lines (101 loc) · 3.6 KB
/
DangerZoneHackerTracker.csproj
File metadata and controls
119 lines (101 loc) · 3.6 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<LangVersion>9.0</LangVersion>
<UseWPF>true</UseWPF>
<ApplicationIcon>Resources\favicon.ico</ApplicationIcon>
<Version>2.2.0</Version>
<Authors>KiD Fearless</Authors>
<Product>DangerZoneHackerTracker</Product>
<Platforms>AnyCPU;x64;x86</Platforms>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>DangerZoneHackerTrackerKiDFearLess.pfx</AssemblyOriginatorKeyFile>
<RuntimeIdentifiers>win-x86;win-x64</RuntimeIdentifiers>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<OutputPath></OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<OutputPath />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<OutputPath />
</PropertyGroup>
<ItemGroup>
<Compile Remove="Controls\**" />
<Compile Remove="Notifications.Wpf.Core\**" />
<Compile Remove="Publish\**" />
<EmbeddedResource Remove="Controls\**" />
<EmbeddedResource Remove="Notifications.Wpf.Core\**" />
<EmbeddedResource Remove="Publish\**" />
<None Remove="Controls\**" />
<None Remove="Notifications.Wpf.Core\**" />
<None Remove="Publish\**" />
<Page Remove="Controls\**" />
<Page Remove="Notifications.Wpf.Core\**" />
<Page Remove="Publish\**" />
</ItemGroup>
<ItemGroup>
<None Remove="app.manifest" />
<None Remove="DangerZoneHackerTracker.exe - Shortcut.lnk" />
<None Remove="DangerZoneHackerTrackerV2.zip" />
<None Remove="Resources\DZ_ICON.png" />
<None Remove="Resources\favicon.ico" />
<None Remove="Resources\haaaaxedit.mp3" />
<None Remove="Resources\icon.png" />
<None Remove="Views\13614349.png" />
</ItemGroup>
<ItemGroup>
<Page Remove="App.xaml" />
</ItemGroup>
<ItemGroup>
<Content Include="Resources\DZ_ICON.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<EmbeddedResource Include="Resources\favicon.ico" />
<EmbeddedResource Include="Resources\haaaaxedit.mp3" />
<Content Include="Resources\icon.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Include="App.xaml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AsyncFriendlyStackTrace" Version="1.6.0" />
<PackageReference Include="Biaui" Version="1.0.23" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="5.0.1" />
<PackageReference Include="NAudio" Version="1.10.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="Notifications.Wpf.Core\Notifications.Wpf.Core.csproj" />
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Update="App.xaml">
<Generator>MSBuild:Compile</Generator>
</ApplicationDefinition>
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
</Project>