Skip to content

Instantly share code, notes, and snippets.

@toptensoftware
Created September 23, 2018 07:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save toptensoftware/6bf3c5a62545e31e1e64ba1c7a1c78a4 to your computer and use it in GitHub Desktop.
Save toptensoftware/6bf3c5a62545e31e1e64ba1c7a1c78a4 to your computer and use it in GitHub Desktop.
<PropertyGroup Condition="$(Configuration.EndsWith('Win'))">
<DefineConstants>$(DefineConstants);WINDOWS</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.EndsWith('Osx'))">
<DefineConstants>$(DefineConstants);OSX</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="$(TargetFramework.StartsWith('net4'))">
<DefineConstants>$(DefineConstants);NET4</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="$(TargetFramework.StartsWith('netcore'))">
<DefineConstants>$(DefineConstants);NETCORE</DefineConstants>
</PropertyGroup>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment