
- Added in .gitignore to ignore the .vs folders in ALL subfolders - Upgraded from 4.6.2 to 4.8 framework for .NET Core - Upgraded from netfamework31 to net80 for .net 8.0 and Framework 4.8 - Changed the EXE File name from EVE-O Preview.exe to EVE-O-Preview.exe
33 lines
1002 B
XML
33 lines
1002 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<PackAsTool>true</PackAsTool>
|
|
|
|
<!-- Make sure start same folder .NET Core CLI and Visual Studio -->
|
|
<RunWorkingDirectory>$(MSBuildProjectDirectory)</RunWorkingDirectory>
|
|
<Configurations>Debug;Release;Build</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Themes\Github\Theme.css" />
|
|
<None Remove="Themes\Github\Theme.html" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="Themes\Github\Theme.css">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Themes\Github\Theme.html">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Cake.Frosting" Version="4.0.0" />
|
|
<PackageReference Include="Cake.MarkdownToPdf" Version="3.0.5" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|