18 lines
492 B
XML
18 lines
492 B
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="NPOI" Version="2.5.6" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\FrontendWebApi\FrontendWebApi.csproj" />
|
|
<ProjectReference Include="..\Repository\Repository.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project> |