-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTweakHub.csproj
More file actions
56 lines (49 loc) · 1.88 KB
/
TweakHub.csproj
File metadata and controls
56 lines (49 loc) · 1.88 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<ApplicationIcon>ico.ico</ApplicationIcon>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AssemblyTitle>TweakHub</AssemblyTitle>
<AssemblyDescription>Windows 11 Performance Tweaking Application</AssemblyDescription>
<AssemblyVersion>0.1.0.0</AssemblyVersion>
<FileVersion>0.1.0.0</FileVersion>
<Copyright>Copyright © 2025</Copyright>
<Company>TweakHub</Company>
<Product>TweakHub</Product>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" />
<PackageReference Include="System.Management" Version="8.0.0" />
<PackageReference Include="ModernWpfUI" Version="0.9.6" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<Resource Include="ico.ico" />
</ItemGroup>
<!-- Exclude embedded test project sources from app compilation -->
<ItemGroup>
<Compile Remove="TweakHub.Tests\**\*.cs" />
<None Include="TweakHub.Tests\**\*.cs" />
</ItemGroup>
<!-- Help IDEs associate XAML + code-behind correctly -->
<ItemGroup>
<Page Update="Views\Dialogs\StyledMessageDialog.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Compile Update="Views\Dialogs\StyledMessageDialog.xaml.cs">
<DependentUpon>StyledMessageDialog.xaml</DependentUpon>
</Compile>
</ItemGroup>
<!-- Copy Scripts folder to output -->
<ItemGroup>
<None Update="Scripts\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>