forked from microsoft/WindowsAppSDK-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
13 lines (13 loc) · 877 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
13 lines (13 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
<Project>
<PropertyGroup>
<!-- Global settings for all WindowsML projects -->
<TargetFramework>net8.0-windows10.0.22621.0</TargetFramework>
<TargetPlatformMinVersion Condition="'$(MSBuildProjectExtension)' == '.csproj'">10.0.22621.0</TargetPlatformMinVersion>
<WindowsTargetPlatformVersion Condition="'$(MSBuildProjectExtension)' == '.vcxproj'">10.0.26100.0</WindowsTargetPlatformVersion>
<Platforms>x64;ARM64</Platforms>
<RuntimeIdentifiers Condition="'$(MSBuildProjectExtension)' == '.csproj'">win-x64;win-arm64</RuntimeIdentifiers>
<Nullable Condition="'$(MSBuildProjectExtension)' == '.csproj'">enable</Nullable>
<ImplicitUsings Condition="'$(MSBuildProjectExtension)' == '.csproj'">enable</ImplicitUsings>
<AllowUnsafeBlocks Condition="'$(MSBuildProjectExtension)' == '.csproj'">true</AllowUnsafeBlocks>
</PropertyGroup>
</Project>