Clean up build warnings and bump version to 1.0.1

- Target test project at net8.0-windows to resolve CA1416 warnings for
  DPAPI-backed (ProtectedData) stores that are genuinely Windows-only
- Only set PublishProfile when the profile file exists, resolving the
  NETSDK1198 warning for the missing win-ARM64.pubxml during CLI builds
- Bump app version 1.0.0.0 -> 1.0.1.0
This commit is contained in:
Austin
2026-07-09 14:42:56 -05:00
parent 4baa4ce8c0
commit e3f2cb814e
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>net8.0</TargetFramework> <TargetFramework>net8.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<IsPackable>false</IsPackable> <IsPackable>false</IsPackable>
+1 -1
View File
@@ -11,7 +11,7 @@
<Identity <Identity
Name="cdb9e5d5-57cc-4e6a-954d-85bc9da6892e" Name="cdb9e5d5-57cc-4e6a-954d-85bc9da6892e"
Publisher="CN=micro" Publisher="CN=micro"
Version="1.0.0.0" /> Version="1.0.1.0" />
<mp:PhoneIdentity PhoneProductId="cdb9e5d5-57cc-4e6a-954d-85bc9da6892e" PhonePublisherId="00000000-0000-0000-0000-000000000000"/> <mp:PhoneIdentity PhoneProductId="cdb9e5d5-57cc-4e6a-954d-85bc9da6892e" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
+1 -1
View File
@@ -7,7 +7,7 @@
<ApplicationManifest>app.manifest</ApplicationManifest> <ApplicationManifest>app.manifest</ApplicationManifest>
<Platforms>x86;x64;ARM64</Platforms> <Platforms>x86;x64;ARM64</Platforms>
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers> <RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
<PublishProfile>win-$(Platform).pubxml</PublishProfile> <PublishProfile Condition="Exists('$(MSBuildProjectDirectory)\Properties\PublishProfiles\win-$(Platform).pubxml')">win-$(Platform).pubxml</PublishProfile>
<UseWinUI>true</UseWinUI> <UseWinUI>true</UseWinUI>
<WinUISDKReferences>false</WinUISDKReferences> <WinUISDKReferences>false</WinUISDKReferences>
<EnableMsixTooling>true</EnableMsixTooling> <EnableMsixTooling>true</EnableMsixTooling>