This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
GradeCalc/GradeCalc/GradeCalc.csproj

17 lines
978 B
XML
Raw Permalink Normal View History

2020-03-11 21:50:16 +01:00
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
2019-12-01 19:33:28 +01:00
<PropertyGroup>
2020-03-11 21:50:16 +01:00
<TargetFramework>netcoreapp3.1</TargetFramework>
2019-12-01 19:33:28 +01:00
<OutputType>WinExe</OutputType>
2020-03-11 21:50:16 +01:00
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
<Deterministic>false</Deterministic>
2019-12-01 19:33:28 +01:00
</PropertyGroup>
2019-12-01 19:41:55 +01:00
<PropertyGroup>
2020-03-11 21:50:16 +01:00
<PostBuildEvent>if exist "$(SolutionDir)Data\pkgtool.exe" ($(SolutionDir)Data\pkgtool.exe build --noLogo --binDir .) else if exist "%appdata%\UpTool2\Apps\0e35d154-d0d3-45e0-b080-62f521263a44\app\pkgtool.exe" ("%appdata%\UpTool2\Apps\0e35d154-d0d3-45e0-b080-62f521263a44\app\pkgtool.exe" build --noLogo --binDir .) else echo Cound not find Package build tools, skipping</PostBuildEvent>
2019-12-01 19:41:55 +01:00
</PropertyGroup>
2019-12-01 19:33:28 +01:00
<ItemGroup>
2020-04-07 17:28:28 +02:00
<PackageReference Include="CC-Functions.W32" Version="1.1.7399.26972" />
<PackageReference Include="EPPlus" Version="5.1.0" />
2020-03-11 21:50:16 +01:00
<PackageReference Include="NCalc2" Version="2.1.0" />
2019-12-01 21:41:32 +01:00
</ItemGroup>
2019-12-01 19:33:28 +01:00
</Project>