mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
15 lines
589 B
Plaintext
15 lines
589 B
Plaintext
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<!-- Some items may be set in Directory.Build.props in root -->
|
||
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||
|
|
<PropertyGroup>
|
||
|
|
<SelfContained>true</SelfContained>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<!-- SelfContained=true requires RuntimeIdentifier to be set -->
|
||
|
|
<PropertyGroup Condition="'$(Platform)'=='x64'">
|
||
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
||
|
|
</PropertyGroup>
|
||
|
|
<PropertyGroup Condition="'$(Platform)'=='ARM64'">
|
||
|
|
<RuntimeIdentifier>win-arm64</RuntimeIdentifier>
|
||
|
|
</PropertyGroup>
|
||
|
|
</Project>
|