|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + <PropertyGroup> |
| 3 | + <OutputType>WinExe</OutputType> |
| 4 | + <TargetFramework>net8.0-windows10.0.19041.0</TargetFramework> |
| 5 | + <TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion> |
| 6 | + <RootNamespace>winui_app</RootNamespace> |
| 7 | + <ApplicationManifest>app.manifest</ApplicationManifest> |
| 8 | + <Platforms>x64;ARM64</Platforms> |
| 9 | + <RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers> |
| 10 | + <PublishProfile>win-$(Platform).pubxml</PublishProfile> |
| 11 | + <UseWinUI>true</UseWinUI> |
| 12 | + <Nullable>enable</Nullable> |
| 13 | + <ImplicitUsings>enable</ImplicitUsings> |
| 14 | + <WindowsPackageType>None</WindowsPackageType> |
| 15 | + </PropertyGroup> |
| 16 | + |
| 17 | + <ItemGroup> |
| 18 | + <Content Include="Assets\sentry-wordmark-dark-300x90.png"> |
| 19 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 20 | + </Content> |
| 21 | + <Content Include="Assets\sentry-wordmark-light-300x90.png"> |
| 22 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 23 | + </Content> |
| 24 | + </ItemGroup> |
| 25 | + |
| 26 | + <ItemGroup> |
| 27 | + <Manifest Include="$(ApplicationManifest)" /> |
| 28 | + </ItemGroup> |
| 29 | + |
| 30 | + <ItemGroup> |
| 31 | + <PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.4188" /> |
| 32 | + <PackageReference Include="Microsoft.WindowsAppSDK" Version="1.7.250606001" /> |
| 33 | + </ItemGroup> |
| 34 | + |
| 35 | + <ItemGroup> |
| 36 | + <ProjectReference Include="..\..\src\Sentry\Sentry.csproj" /> |
| 37 | + </ItemGroup> |
| 38 | + |
| 39 | + <PropertyGroup> |
| 40 | + <PublishReadyToRun Condition="'$(Configuration)' == 'Debug'">False</PublishReadyToRun> |
| 41 | + <PublishReadyToRun Condition="'$(Configuration)' != 'Debug'">True</PublishReadyToRun> |
| 42 | + <PublishTrimmed Condition="'$(Configuration)' == 'Debug'">False</PublishTrimmed> |
| 43 | + <PublishTrimmed Condition="'$(Configuration)' != 'Debug'">True</PublishTrimmed> |
| 44 | + </PropertyGroup> |
| 45 | +</Project> |
0 commit comments