Skip to content

Commit

Permalink
Merge v1.24.111 (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
tajbender authored Nov 4, 2024
2 parents a6cc35f + a2cead9 commit 6305987
Showing 1 changed file with 40 additions and 3 deletions.
43 changes: 40 additions & 3 deletions src/electrifier/electrifier.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
<LangVersion>12.0</LangVersion>
<RootNamespace>electrifier</RootNamespace>
<ApplicationIcon>Assets\app.ico</ApplicationIcon>
<ApplicationIcon>Assets\Legacy Assets from Old-School electrifier\Electrifier Icon.ico</ApplicationIcon>
<ApplicationManifest>app.manifest</ApplicationManifest>
<Platforms>x86;x64;arm64</Platforms>
<RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers>
Expand All @@ -14,7 +14,7 @@
<Nullable>enable</Nullable>
<UseWinUI>true</UseWinUI>
<EnableMsixTooling>true</EnableMsixTooling>
<AssemblyVersion>1.24.1015</AssemblyVersion>
<AssemblyVersion>1.24.111</AssemblyVersion>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RunAnalyzersDuringLiveAnalysis>True</RunAnalyzersDuringLiveAnalysis>
Expand All @@ -25,9 +25,11 @@
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/electrifier</RepositoryUrl>
<UserSecretsId>8a2a75f7-cf60-45ba-b4cc-68e3ff9a8e22</UserSecretsId>
<PackageIcon>Square44x44Logo.scale-200_altform-unplated.png</PackageIcon>
<PackageIcon>StoreLogo.scale-150.png</PackageIcon>
<PackageCertificateThumbprint>412DFB2FB1169368A38C65F3586FFEFECA0AB03B</PackageCertificateThumbprint>
<AppxPackageSigningEnabled>True</AppxPackageSigningEnabled>
<PackageTags>manager files directories directory c# .net Vanara Win App SDK</PackageTags>
<PackageReleaseNotes>Octavian</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<Content Remove="Assets\Square44x44Logo.scale-200_altform-unplated.png" />
Expand Down Expand Up @@ -69,6 +71,14 @@
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Assets\Square44x44Logo_unplated.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="Assets\StoreLogo.scale-150.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
Expand All @@ -87,4 +97,31 @@
<PropertyGroup Condition="'$(DisableHasPackageAndPublishMenuAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'">
<HasPackageAndPublishMenu>true</HasPackageAndPublishMenu>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<Optimize>True</Optimize>
<DebugType>full</DebugType>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Optimize>True</Optimize>
<DebugType>full</DebugType>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|arm64'">
<Optimize>True</Optimize>
<DebugType>full</DebugType>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<DebugType>full</DebugType>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DebugType>full</DebugType>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|arm64'">
<DebugType>full</DebugType>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
</PropertyGroup>
</Project>

0 comments on commit 6305987

Please sign in to comment.