| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <OutputType>WinExe</OutputType> |
| 5 | <TargetFramework>net8.0-windows10.0.19041.0</TargetFramework> |
| 6 | <TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion> |
| 7 | <RootNamespace>RblxTool</RootNamespace> |
| 8 | <AssemblyName>RblxTool</AssemblyName> |
| 9 | <ApplicationManifest>app.manifest</ApplicationManifest> |
| 10 | <Platforms>x64;arm64</Platforms> |
| 11 | <RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers> |
| 12 | <UseWinUI>true</UseWinUI> |
| 13 | <WindowsPackageType>None</WindowsPackageType> |
| 14 | <EnableMsixTooling>false</EnableMsixTooling> |
| 15 | <Nullable>enable</Nullable> |
| 16 | <LangVersion>latest</LangVersion> |
| 17 | <ImplicitUsings>enable</ImplicitUsings> |
| 18 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
| 19 | <PublishAot>true</PublishAot> |
| 20 | <InvariantGlobalization>true</InvariantGlobalization> |
| 21 | <UseSystemResourceKeys>true</UseSystemResourceKeys> |
| 22 | <TieredPGO>true</TieredPGO> |
| 23 | <ServerGarbageCollection>false</ServerGarbageCollection> |
| 24 | <ConcurrentGarbageCollection>true</ConcurrentGarbageCollection> |
| 25 | <JsonSerializerIsReflectionEnabledByDefault>false</JsonSerializerIsReflectionEnabledByDefault> |
| 26 | </PropertyGroup> |
| 27 | |
| 28 | <ItemGroup> |
| 29 | <PackageReference Include="Microsoft.WindowsAppSDK" Version="1.6.240923002" /> |
| 30 | <PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.1742" /> |
| 31 | </ItemGroup> |
| 32 | |
| 33 | <ItemGroup> |
| 34 | <Content Include="runtimes\win-x64\native\rblx_core.dll" Condition="Exists('runtimes\win-x64\native\rblx_core.dll')"> |
| 35 | <Link>rblx_core.dll</Link> |
| 36 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 37 | </Content> |
| 38 | </ItemGroup> |
| 39 | |
| 40 | </Project> |