Skip to content

Instantly share code, notes, and snippets.

@dontpaniclabsgists
Created October 16, 2017 15:43
Show Gist options
  • Save dontpaniclabsgists/410a48a26bca1134b1f40bd7f0cd6acb to your computer and use it in GitHub Desktop.
Save dontpaniclabsgists/410a48a26bca1134b1f40bd7f0cd6acb to your computer and use it in GitHub Desktop.
Targeting_1
<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