18 lines
643 B
XML
18 lines
643 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<Version>2.7.9.1217</Version>
|
|
<Authors>Annamaria Sassi</Authors>
|
|
<Company>Egalware</Company>
|
|
<Description>Componente gestione JWD per LUX</Description>
|
|
</PropertyGroup>
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
<Exec Command="powershell.exe -ExecutionPolicy Unrestricted -NoProfile -NonInteractive -File $(ProjectDir)\post-build.ps1 -ProjectPath $(ProjectPath)" />
|
|
</Target>
|
|
</Project>
|
|
|