|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
2 | | - <PropertyGroup> |
3 | | - <!-- Program Config --> |
4 | | - <StartupObject>WheelWizard.Program</StartupObject> |
5 | | - <OutputType>WinExe</OutputType> |
6 | | - <TargetFramework>net8.0</TargetFramework> |
7 | | - <RootNamespace>WheelWizard</RootNamespace> |
8 | | - <Nullable>enable</Nullable> |
9 | | - <ImplicitUsings>true</ImplicitUsings> |
10 | | - |
11 | | - <AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault> |
12 | | - <NoWarn>$(NoWarn);AVLN3001</NoWarn> |
13 | | - |
14 | | - <!-- Program details --> |
15 | | - <Version>2.4.10</Version> |
16 | | - <Description>This program will manage RetroRewind and mods :)</Description> |
17 | | - <Copyright>GNU v3.0</Copyright> |
18 | | - <RepositoryUrl>https://github.com/patchzyy/WheelWizard</RepositoryUrl> |
19 | | - <ApplicationIcon>car-wheel.ico</ApplicationIcon> |
20 | | - </PropertyGroup> |
21 | | - |
22 | | - <PropertyGroup Condition="'$(RuntimeIdentifier)' == 'win-x64'"> |
23 | | - <DefineConstants>$(DefineConstants);WINDOWS</DefineConstants> |
24 | | - </PropertyGroup> |
25 | | - |
26 | | - <PropertyGroup Condition="'$(RuntimeIdentifier)' == 'linux-x64' or '$(RuntimeIdentifier)' == 'linux-arm64'"> |
27 | | - <DefineConstants>$(DefineConstants);LINUX</DefineConstants> |
28 | | - </PropertyGroup> |
29 | | - |
30 | | - <PropertyGroup Condition="'$(RuntimeIdentifier)' == 'osx-arm64' or '$(RuntimeIdentifier)' == 'osx-x64'"> |
31 | | - <DefineConstants>$(DefineConstants);MACOS</DefineConstants> |
32 | | - </PropertyGroup> |
33 | | - |
34 | | - <ItemGroup> |
35 | | - <!-- Everything specifically for Avalonia --> |
36 | | - <PackageReference Include="Avalonia" Version="11.2.5"/> |
37 | | - <PackageReference Include="Avalonia.Desktop" Version="11.2.5"/> |
38 | | - <PackageReference Include="Avalonia.Themes.Fluent" Version="11.2.5"/> |
39 | | - <PackageReference Include="Avalonia.Fonts.Inter" Version="11.2.5"/> |
40 | | - <PackageReference Include="Avalonia.HtmlRenderer" Version="11.0.0"/> |
41 | | - <PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.2.5"/> |
42 | | - |
43 | | - <!-- Code analyzers --> |
44 | | - <PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0"> |
45 | | - <PrivateAssets>all</PrivateAssets> |
46 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
47 | | - </PackageReference> |
48 | | - |
49 | | - <!-- Everything from the OG Wheel wizard project --> |
50 | | - <PackageReference Include="ini-parser" Version="2.5.2" NoWarn="NU1701"/> |
51 | | - <PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="10.0.0-preview.3.25171.5"/> |
52 | | - <PackageReference Include="Microsoft.Extensions.Http.Resilience" Version="9.3.0"/> |
53 | | - <PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.3"/> |
54 | | - <PackageReference Include="Refit.HttpClientFactory" Version="8.0.0"/> |
55 | | - <PackageReference Include="Semver" Version="3.0.0"/> |
56 | | - <PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0"/> |
57 | | - <PackageReference Include="Serilog.Sinks.Console" Version="6.0.0"/> |
58 | | - <PackageReference Include="Serilog.Sinks.File" Version="6.0.0"/> |
59 | | - <PackageReference Include="SharpCompress" Version="0.48.1"/> |
60 | | - <PackageReference Include="Tmds.DBus.Protocol" Version="0.21.3"/> |
61 | | - <PackageReference Include="TestableIO.System.IO.Abstractions.Analyzers" Version="2022.0.0"> |
62 | | - <PrivateAssets>all</PrivateAssets> |
63 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
64 | | - </PackageReference> |
65 | | - <PackageReference Include="Testably.Abstractions" Version="9.0.0"/> |
66 | | - <PackageReference Include="YamlDotNet" Version="17.1.0"/> |
67 | | - </ItemGroup> |
68 | | - |
69 | | - <ItemGroup Label="Embedded Resources"> |
70 | | - <EmbeddedResource Include="Resources\Languages\*.yml" /> |
71 | | - |
72 | | - <!-- Compile Items --> |
73 | | - <Compile Update="Views\Components\StandardLibrary\PopupListButton.axaml.cs"> |
74 | | - <DependentUpon>PopupListButton.axaml</DependentUpon> |
75 | | - <SubType>Code</SubType> |
76 | | - </Compile> |
77 | | - <Compile Update="Views\Popups\MiiManagement\MiiEditor\EditorEmpty.axaml.cs"> |
78 | | - <DependentUpon>EditorEmpty.axaml</DependentUpon> |
79 | | - <SubType>Code</SubType> |
80 | | - </Compile> |
81 | | - <Compile Update="Views\Components\StandardLibrary\MemeNumberState.axaml.cs"> |
82 | | - <DependentUpon>MemeNumberState.axaml</DependentUpon> |
83 | | - </Compile> |
84 | | - </ItemGroup> |
85 | | - |
86 | | - <ItemGroup Label="Additional Files"> |
87 | | - <AdditionalFiles Include="Views\Styles\Resources\Constants.axaml"/> |
88 | | - <AdditionalFiles Include="Views\Styles\Resources\Icons.axaml"/> |
89 | | - <AdditionalFiles Include="Views\Styles\Styles\ButtonStyles.axaml"/> |
90 | | - <AdditionalFiles Include="Views\Styles\Styles\TextStyles.axaml"/> |
91 | | - <AdditionalFiles Include="Views\Styles\Util\IconExampleComponent.axaml"/> |
92 | | - </ItemGroup> |
93 | | - |
94 | | - <ItemGroup Label="Fonts"> |
95 | | - <AvaloniaResource Include="Resources\Fonts\Roboto-Regular.ttf"/> |
96 | | - <AvaloniaResource Include="Resources\Fonts\ctmkf.ttf"/> |
97 | | - </ItemGroup> |
98 | | - |
99 | | - <ItemGroup Label="Mii Rendering Resources"> |
100 | | - <EmbeddedResource Include="Features\MiiRendering\Resources\*.rmdl" /> |
101 | | - </ItemGroup> |
102 | | - |
103 | | - <ItemGroup Label="Patches Resources"> |
104 | | - <EmbeddedResource Include="Features\Patches\Resources\*.json" /> |
105 | | - </ItemGroup> |
106 | | - |
107 | | - <ItemGroup> |
108 | | - <UpToDateCheckInput Remove="Views\Popups\MiiCreatorTabs\MiiCreatorGeneralPage.axaml"/> |
109 | | - <UpToDateCheckInput Remove="Views\Popups\MiiCreatorTabs\MiiCreatorWindow.axaml"/> |
110 | | - </ItemGroup> |
111 | | -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + <PropertyGroup> |
| 3 | + <!-- Program Config --> |
| 4 | + <StartupObject>WheelWizard.Program</StartupObject> |
| 5 | + <OutputType>WinExe</OutputType> |
| 6 | + <TargetFramework>net8.0</TargetFramework> |
| 7 | + <RootNamespace>WheelWizard</RootNamespace> |
| 8 | + <Nullable>enable</Nullable> |
| 9 | + <ImplicitUsings>true</ImplicitUsings> |
| 10 | + |
| 11 | + <AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault> |
| 12 | + <NoWarn>$(NoWarn);AVLN3001</NoWarn> |
| 13 | + |
| 14 | + <!-- Program details --> |
| 15 | + <Version>2.4.11</Version> |
| 16 | + <Description>This program will manage RetroRewind and mods :)</Description> |
| 17 | + <Copyright>GNU v3.0</Copyright> |
| 18 | + <RepositoryUrl>https://github.com/patchzyy/WheelWizard</RepositoryUrl> |
| 19 | + <ApplicationIcon>car-wheel.ico</ApplicationIcon> |
| 20 | + </PropertyGroup> |
| 21 | + |
| 22 | + <PropertyGroup Condition="'$(RuntimeIdentifier)' == 'win-x64'"> |
| 23 | + <DefineConstants>$(DefineConstants);WINDOWS</DefineConstants> |
| 24 | + </PropertyGroup> |
| 25 | + |
| 26 | + <PropertyGroup Condition="'$(RuntimeIdentifier)' == 'linux-x64' or '$(RuntimeIdentifier)' == 'linux-arm64'"> |
| 27 | + <DefineConstants>$(DefineConstants);LINUX</DefineConstants> |
| 28 | + </PropertyGroup> |
| 29 | + |
| 30 | + <PropertyGroup Condition="'$(RuntimeIdentifier)' == 'osx-arm64' or '$(RuntimeIdentifier)' == 'osx-x64'"> |
| 31 | + <DefineConstants>$(DefineConstants);MACOS</DefineConstants> |
| 32 | + </PropertyGroup> |
| 33 | + |
| 34 | + <ItemGroup> |
| 35 | + <!-- Everything specifically for Avalonia --> |
| 36 | + <PackageReference Include="Avalonia" Version="11.2.5"/> |
| 37 | + <PackageReference Include="Avalonia.Desktop" Version="11.2.5"/> |
| 38 | + <PackageReference Include="Avalonia.Themes.Fluent" Version="11.2.5"/> |
| 39 | + <PackageReference Include="Avalonia.Fonts.Inter" Version="11.2.5"/> |
| 40 | + <PackageReference Include="Avalonia.HtmlRenderer" Version="11.0.0"/> |
| 41 | + <PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.2.5"/> |
| 42 | + |
| 43 | + <!-- Code analyzers --> |
| 44 | + <PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0"> |
| 45 | + <PrivateAssets>all</PrivateAssets> |
| 46 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 47 | + </PackageReference> |
| 48 | + |
| 49 | + <!-- Everything from the OG Wheel wizard project --> |
| 50 | + <PackageReference Include="ini-parser" Version="2.5.2" NoWarn="NU1701"/> |
| 51 | + <PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="10.0.0-preview.3.25171.5"/> |
| 52 | + <PackageReference Include="Microsoft.Extensions.Http.Resilience" Version="9.3.0"/> |
| 53 | + <PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.3"/> |
| 54 | + <PackageReference Include="Refit.HttpClientFactory" Version="8.0.0"/> |
| 55 | + <PackageReference Include="Semver" Version="3.0.0"/> |
| 56 | + <PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0"/> |
| 57 | + <PackageReference Include="Serilog.Sinks.Console" Version="6.0.0"/> |
| 58 | + <PackageReference Include="Serilog.Sinks.File" Version="6.0.0"/> |
| 59 | + <PackageReference Include="SharpCompress" Version="0.48.1"/> |
| 60 | + <PackageReference Include="Tmds.DBus.Protocol" Version="0.21.3"/> |
| 61 | + <PackageReference Include="TestableIO.System.IO.Abstractions.Analyzers" Version="2022.0.0"> |
| 62 | + <PrivateAssets>all</PrivateAssets> |
| 63 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 64 | + </PackageReference> |
| 65 | + <PackageReference Include="Testably.Abstractions" Version="9.0.0"/> |
| 66 | + <PackageReference Include="YamlDotNet" Version="17.1.0"/> |
| 67 | + </ItemGroup> |
| 68 | + |
| 69 | + <ItemGroup Label="Embedded Resources"> |
| 70 | + <EmbeddedResource Include="Resources\Languages\*.yml" /> |
| 71 | + |
| 72 | + <!-- Compile Items --> |
| 73 | + <Compile Update="Views\Components\StandardLibrary\PopupListButton.axaml.cs"> |
| 74 | + <DependentUpon>PopupListButton.axaml</DependentUpon> |
| 75 | + <SubType>Code</SubType> |
| 76 | + </Compile> |
| 77 | + <Compile Update="Views\Popups\MiiManagement\MiiEditor\EditorEmpty.axaml.cs"> |
| 78 | + <DependentUpon>EditorEmpty.axaml</DependentUpon> |
| 79 | + <SubType>Code</SubType> |
| 80 | + </Compile> |
| 81 | + <Compile Update="Views\Components\StandardLibrary\MemeNumberState.axaml.cs"> |
| 82 | + <DependentUpon>MemeNumberState.axaml</DependentUpon> |
| 83 | + </Compile> |
| 84 | + </ItemGroup> |
| 85 | + |
| 86 | + <ItemGroup Label="Additional Files"> |
| 87 | + <AdditionalFiles Include="Views\Styles\Resources\Constants.axaml"/> |
| 88 | + <AdditionalFiles Include="Views\Styles\Resources\Icons.axaml"/> |
| 89 | + <AdditionalFiles Include="Views\Styles\Styles\ButtonStyles.axaml"/> |
| 90 | + <AdditionalFiles Include="Views\Styles\Styles\TextStyles.axaml"/> |
| 91 | + <AdditionalFiles Include="Views\Styles\Util\IconExampleComponent.axaml"/> |
| 92 | + </ItemGroup> |
| 93 | + |
| 94 | + <ItemGroup Label="Fonts"> |
| 95 | + <AvaloniaResource Include="Resources\Fonts\Roboto-Regular.ttf"/> |
| 96 | + <AvaloniaResource Include="Resources\Fonts\ctmkf.ttf"/> |
| 97 | + </ItemGroup> |
| 98 | + |
| 99 | + <ItemGroup Label="Mii Rendering Resources"> |
| 100 | + <EmbeddedResource Include="Features\MiiRendering\Resources\*.rmdl" /> |
| 101 | + </ItemGroup> |
| 102 | + |
| 103 | + <ItemGroup Label="Patches Resources"> |
| 104 | + <EmbeddedResource Include="Features\Patches\Resources\*.json" /> |
| 105 | + </ItemGroup> |
| 106 | + |
| 107 | + <ItemGroup> |
| 108 | + <UpToDateCheckInput Remove="Views\Popups\MiiCreatorTabs\MiiCreatorGeneralPage.axaml"/> |
| 109 | + <UpToDateCheckInput Remove="Views\Popups\MiiCreatorTabs\MiiCreatorWindow.axaml"/> |
| 110 | + </ItemGroup> |
| 111 | +</Project> |
0 commit comments