-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathControlLauncher.csproj
More file actions
53 lines (46 loc) · 1.63 KB
/
ControlLauncher.csproj
File metadata and controls
53 lines (46 loc) · 1.63 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows10.0.22621.0</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<ApplicationIcon>Images\Control.ico</ApplicationIcon>
<ApplicationManifest>app.manifest</ApplicationManifest>
<PlatformTarget>x64</PlatformTarget>
<Platforms>x64</Platforms>
<Title>Control Launcher</Title>
<Authors>Emma Alyx Wunder</Authors>
<FileVersion>$(AssemblyVersion)</FileVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</PropertyGroup>
<ItemGroup>
<None Remove="Fonts\Inter-Bold.ttf" />
<None Remove="Fonts\Inter-BoldItalic.ttf" />
<None Remove="Fonts\Inter-Italic.ttf" />
<None Remove="Fonts\Inter-Regular.ttf" />
<None Remove="Images\control.png" />
</ItemGroup>
<ItemGroup>
<Resource Include="Images\Control.ico" />
<Resource Include="Images\control.png" />
</ItemGroup>
<ItemGroup>
<Resource Include="Fonts\Inter-Bold.ttf" />
<Resource Include="Fonts\Inter-BoldItalic.ttf" />
<Resource Include="Fonts\Inter-Italic.ttf" />
<Resource Include="Fonts\Inter-Regular.ttf" />
</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>
</ItemGroup>
</Project>