87 lines
3.3 KiB
XML
87 lines
3.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Version>0.9.2512.0918</Version>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="ExtLib\**" />
|
|
<Content Remove="ExtLib\**" />
|
|
<EmbeddedResource Remove="ExtLib\**" />
|
|
<None Remove="ExtLib\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Controllers\JwdController.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="DemoData\AntaDoppia.jwd" />
|
|
<None Remove="DemoData\AntaSingola.jwd" />
|
|
<None Remove="DemoData\FinDueAnteBottomFisso.jwd" />
|
|
<None Remove="DemoData\FinestraSplitVert.jwd" />
|
|
<None Remove="DemoData\FinestraSplitVertOriz.jwd" />
|
|
<None Remove="DemoImg\AntaDoppia.svg" />
|
|
<None Remove="DemoImg\AntaSingola.svg" />
|
|
<None Remove="DemoImg\Window01.jpg" />
|
|
<None Remove="DemoImg\Window01.png" />
|
|
<None Remove="DemoImg\Window01.svg" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="DemoData\AntaDoppia.jwd">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="DemoData\AntaSingola.jwd">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="DemoData\FinDueAnteBottomFisso.jwd">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="DemoData\FinestraSplitVert.jwd">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="DemoData\FinestraSplitVertOriz.jwd">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="DemoImg\AntaDoppia.svg">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="DemoImg\AntaSingola.svg">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="DemoImg\Window01.jpg">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="DemoImg\Window01.png">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="DemoImg\Window01.svg">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="NLog" Version="6.0.1" />
|
|
<PackageReference Include="NLog.Web.AspNetCore" Version="6.0.1" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\EgwCoreLib.Lux.Core\EgwCoreLib.Lux.Core.csproj" />
|
|
<ProjectReference Include="..\EgwCoreLib.Lux.Data\EgwCoreLib.Lux.Data.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="logs\.placeholder">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
<Exec Command="powershell.exe -ExecutionPolicy Unrestricted -NoProfile -NonInteractive -File $(ProjectDir)\post-build.ps1 -ProjectDir $(ProjectDir) -ProjectPath $(ProjectPath)" />
|
|
</Target>
|
|
</Project>
|