Created
January 28, 2018 12:01
-
-
Save FriedrichWeinmann/6e3e77e6bf4d3bc80835cf6228f9a4bb to your computer and use it in GitHub Desktop.
C# Project configuration - do not append target framework to path
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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