16 lines
774 B
Plaintext
16 lines
774 B
Plaintext
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<Configuration>Release</Configuration>
|
|
<!-- JIT compiles to the required architecture -->
|
|
<Platform>Any CPU</Platform>
|
|
<!--
|
|
NOTE: it is poorly documented but PublishDir MUST be specified where PublishProtocol:Filesystem
|
|
if you don't include this property, dotnet publish will SILENTLY IGNORE this file.
|
|
-->
|
|
<PublishDir>bin\Release\net472\publish\</PublishDir>
|
|
<PublishProtocol>FileSystem</PublishProtocol>
|
|
<TargetFramework>net472</TargetFramework>
|
|
<!-- include 32-bit versions of platform-specific binaries for maximum compatibility -->
|
|
<RuntimeIdentifier>win7-x86</RuntimeIdentifier>
|
|
</PropertyGroup>
|
|
</Project> |