22 lines
604 B
XML
22 lines
604 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="Web\node_modules\.bin\esiur" />
|
|
<None Include="Web\node_modules\.bin\esiur.cmd" />
|
|
<None Include="Web\node_modules\.bin\esiur.ps1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Esiur" Version="2.4.1" />
|
|
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|