-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f463132
commit babcffa
Showing
5 changed files
with
92 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<Authors>wherewhere</Authors> | ||
<Copyright>Copyright © 2017 - 2023 wherewhere. All Rights Reserved.</Copyright> | ||
<Description>UWP running on .NET Core App</Description> | ||
<LangVersion>preview</LangVersion> | ||
<RepositoryType>git</RepositoryType> | ||
<PublishRepositoryUrl>True</PublishRepositoryUrl> | ||
<RepositoryUrl>https://github.com/wherewhere/CoreAppUWP</RepositoryUrl> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision> | ||
<AppxBundle>Never</AppxBundle> | ||
<AppxBundlePlatforms>x64</AppxBundlePlatforms> | ||
<AppxPackageDir>AppPackages</AppxPackageDir> | ||
<AppxPackageSigningEnabled>True</AppxPackageSigningEnabled> | ||
<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm> | ||
<AppxPackageSigningTimestampServerUrl>http://timestamp.digicert.com</AppxPackageSigningTimestampServerUrl> | ||
<AppxSymbolPackageEnabled>True</AppxSymbolPackageEnabled> | ||
<GenerateAppInstallerFile>False</GenerateAppInstallerFile> | ||
<GenerateTemporaryStoreCertificate>True</GenerateTemporaryStoreCertificate> | ||
<GenerateTestArtifacts>True</GenerateTestArtifacts> | ||
<HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks> | ||
</PropertyGroup> | ||
|
||
<!-- | ||
Defining the "HasPackageAndPublishMenuAddedByProject" property here allows the Solution | ||
Explorer "Package and Publish" context menu entry to be enabled for this project even if | ||
the Windows App SDK Nuget package has not yet been restored. | ||
--> | ||
<PropertyGroup Condition="'$(DisableHasPackageAndPublishMenuAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'"> | ||
<HasPackageAndPublishMenu>true</HasPackageAndPublishMenu> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(TargetFramework)' == 'netcore5.0'"> | ||
<NugetTargetMoniker>.NETCore,Version=v5.0</NugetTargetMoniker> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(TargetFramework)' == 'uap10.0'"> | ||
<TargetPlatformMinVersion>10.0</TargetPlatformMinVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(TargetFramework)' == 'uap10.0.15138.0'"> | ||
<DefineConstants>$(DefineConstants);UAP10_0_15138_0</DefineConstants> | ||
<TargetPlatformMinVersion>10.0.15138.0</TargetPlatformMinVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(TargetFramework)' == 'uap10.0' | ||
or '$(TargetFramework)' == 'uap10.0.15138.0'"> | ||
<CopyLocalLockFileAssemblies>False</CopyLocalLockFileAssemblies> | ||
<DefaultLanguage>en-US</DefaultLanguage> | ||
<DefineConstants>$(DefineConstants);NETCORE;NETCORE_5_0;NETFX_CORE;WINDOWS_UWP;UAP10_0</DefineConstants> | ||
<LanguageTargets>$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets</LanguageTargets> | ||
<NugetTargetMoniker>UAP,Version=v10.0</NugetTargetMoniker> | ||
<TargetFrameworkIdentifier>.NETCore</TargetFrameworkIdentifier> | ||
<TargetFrameworkVersion>v5.0</TargetFrameworkVersion> | ||
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier> | ||
<TargetPlatformVersion>10.0.22621.0</TargetPlatformVersion> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<Project> | ||
<!-- | ||
Defining the "Msix" ProjectCapability here allows the Single-project MSIX Packaging | ||
Tools extension to be activated for this project even if the Windows App SDK Nuget | ||
package has not yet been restored. | ||
--> | ||
<ItemGroup Condition="'$(DisableMsixProjectCapabilityAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'"> | ||
<ProjectCapability Include="Msix" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'netcore5.0'"> | ||
<PackageReference Include="Microsoft.NETCore" Version="5.0.2" PrivateAssets="all" IsImplicitlyDefined="true" /> | ||
<PackageReference Include="Microsoft.NETCore.Portable.Compatibility" Version="1.0.2" PrivateAssets="all" IsImplicitlyDefined="true" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'uap10.0' | ||
or '$(TargetFramework)' == 'uap10.0.15138.0'"> | ||
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="6.2.14" PrivateAssets="all" IsImplicitlyDefined="true" /> | ||
</ItemGroup> | ||
</Project> |