-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSSX MultiTool.csproj
More file actions
63 lines (55 loc) · 1.91 KB
/
SSX MultiTool.csproj
File metadata and controls
63 lines (55 loc) · 1.91 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows7.0</TargetFramework>
<RootNamespace>SSXMultiTool</RootNamespace>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<UseWPF>True</UseWPF>
<PackageIcon>Moutain.png</PackageIcon>
<ApplicationIcon>Textures\Moutain.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Compile Remove="SSX-Library\**" />
<EmbeddedResource Remove="SSX-Library\**" />
<None Remove="SSX-Library\**" />
<Page Remove="SSX-Library\**" />
</ItemGroup>
<ItemGroup>
<Content Include="Textures\Moutain.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.WindowsAPICodePack-Shell" Version="1.1.0" />
<PackageReference Include="NAudio" Version="2.2.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="SharpZipLib" Version="1.4.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="SSX-Library\SSX-Library\SSX-Library.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
<Compile Update="Tools\NewSSHImageTools.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="Tools\SSXBlurToolsWindow.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<None Update="Textures\Moutain.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>