Skip to content

Instantly share code, notes, and snippets.

@FriedrichWeinmann
Created January 28, 2018 12:01
Show Gist options
  • Save FriedrichWeinmann/6e3e77e6bf4d3bc80835cf6228f9a4bb to your computer and use it in GitHub Desktop.
Save FriedrichWeinmann/6e3e77e6bf4d3bc80835cf6228f9a4bb to your computer and use it in GitHub Desktop.
C# Project configuration - do not append target framework to path
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>..\..\..\FredsIronScripter2018\bin</OutputPath>
<DocumentationFile>..\..\..\FredsIronScripter2018\bin\FredsIronScripter2018.xml</DocumentationFile>
</PropertyGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment