Skip to content

Instantly share code, notes, and snippets.

@NickAcPT
Created May 3, 2020 22:01
Show Gist options
  • Save NickAcPT/cf169827badde868d17cec071695a843 to your computer and use it in GitHub Desktop.
Save NickAcPT/cf169827badde868d17cec071695a843 to your computer and use it in GitHub Desktop.
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWPF>true</UseWPF>
<ApplicationManifest>app.manifest</ApplicationManifest>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup />
<ItemGroup>
<PackageReference Include="ModernWpfUI" Version="0.8.3-preview.200417.3" />
<PackageReference Include="System.Runtime" Version="4.3.1" />
<PackageReference Include="Vanara.Core" Version="3.2.5" />
<PackageReference Include="Vanara.PInvoke.DwmApi" Version="3.2.5" />
<PackageReference Include="Vanara.PInvoke.Shared" Version="3.2.5" />
<PackageReference Include="Vanara.PInvoke.User32" Version="3.2.5" />
<PackageReference Include="Vanara.PInvoke.UxTheme" Version="3.2.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\WinTabby.Events\WinTabby.Events.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="del $(OutDir)$(TargetName).deps.json" />
</Target>
<ItemGroup>
<PackageReference Update="Microsoft.VCRTForwarders.140" Version="1.0.5" />
</ItemGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment