Skip to content

Instantly share code, notes, and snippets.

@amaitland
Created April 27, 2021 01:12
Show Gist options
  • Save amaitland/51002db8c7191d8ac818d754f73309a4 to your computer and use it in GitHub Desktop.
Save amaitland/51002db8c7191d8ac818d754f73309a4 to your computer and use it in GitHub Desktop.
MinimalExample WPF Publish Net Core 3.1 Release x64
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>x64</Platform>
<PublishDir>bin.netcore\Release\netcoreapp3.1\publish\</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<SelfContained>false</SelfContained>
<PublishSingleFile>False</PublishSingleFile>
<PublishReadyToRun>False</PublishReadyToRun>
</PropertyGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment