Common.SelfContained.props
1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Some items may be set in Directory.Build.props in root --> 3 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 4 <PropertyGroup> 5 <SelfContained>true</SelfContained> 6 </PropertyGroup> 7 8 <!-- SelfContained=true requires RuntimeIdentifier to be set --> 9 <PropertyGroup Condition="'$(Platform)'=='x64'"> 10 <RuntimeIdentifier>win-x64</RuntimeIdentifier> 11 </PropertyGroup> 12 <PropertyGroup Condition="'$(Platform)'=='ARM64'"> 13 <RuntimeIdentifier>win-arm64</RuntimeIdentifier> 14 </PropertyGroup> 15 </Project>