Created
October 16, 2017 15:43
-
-
Save dontpaniclabsgists/410a48a26bca1134b1f40bd7f0cd6acb to your computer and use it in GitHub Desktop.
Targeting_1
This file contains 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>netstandard1.4</TargetFramework> | |
<!-- https://docs.microsoft.com/en-us/NuGet/schema/msbuild-targets#packagetargetfallback Allows getting NuGet packages that don't explicitly set netstandard version --> | |
<PackageTargetFallback>portable-net45</PackageTargetFallback> | |
<DebugType>full</DebugType> | |
</PropertyGroup> | |
<ItemGroup> | |
<Compile Update="**\*.xaml.cs" DependentUpon="%(Filename)" /> | |
<EmbeddedResource Include="**\*.xaml" SubType="Designer" Generator="MSBuild:UpdateDesignTimeXaml" /> | |
</ItemGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment