2021-01-08 12:36:57 -05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
2022-05-12 17:23:58 -04:00
|
|
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
2021-01-08 12:36:57 -05:00
|
|
|
|
<UseWPF>true</UseWPF>
|
2021-01-14 13:38:31 -05:00
|
|
|
|
<Company>Jeddunk</Company>
|
2022-05-12 17:23:58 -04:00
|
|
|
|
<Platforms>x86</Platforms>
|
2021-01-08 12:36:57 -05:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-05-12 15:40:28 -04:00
|
|
|
|
<PackageReference Include="MvvmCross.Platforms.Wpf" Version="8.0.2" />
|
|
|
|
|
<PackageReference Include="Serilog" Version="2.11.0" />
|
|
|
|
|
<PackageReference Include="Serilog.Extensions.Logging" Version="3.1.0" />
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" />
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
|
2021-01-08 12:36:57 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\GoldbergGUI.Core\GoldbergGUI.Core.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-01-19 07:23:31 -05:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="publish\**" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Remove="publish\**" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove="publish\**" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Page Remove="publish\**" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-01-08 12:36:57 -05:00
|
|
|
|
</Project>
|