61 lines
2.1 KiB
XML
61 lines
2.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Version>8.16.2605.1119</Version>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="compilerconfig.json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<_WebToolingArtifacts Remove="Properties\PublishProfiles\IIS01.pubxml" />
|
|
<_WebToolingArtifacts Remove="Properties\PublishProfiles\IIS03.pubxml" />
|
|
<_WebToolingArtifacts Remove="Properties\PublishProfiles\IIS04.pubxml" />
|
|
<_WebToolingArtifacts Remove="Properties\PublishProfiles\IISProfile.pubxml" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="compilerconfig.json" />
|
|
<None Include="Properties\PublishProfiles\IIS01.pubxml.user" />
|
|
<None Include="Properties\PublishProfiles\IIS03.pubxml.user" />
|
|
<None Include="Properties\PublishProfiles\IIS04.pubxml.user" />
|
|
<None Include="Properties\PublishProfiles\IISProfile.pubxml.user" />
|
|
<None Include="wwwroot\images\LogoBlu.svg" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="EgwCoreLib.Razor" />
|
|
<PackageReference Include="EgwCoreLib.Utils" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Components" />
|
|
<PackageReference Include="NLog" />
|
|
<PackageReference Include="NLog.Web.AspNetCore" />
|
|
<PackageReference Include="Snappier" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MP.Data\MP.Data.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="logs\.placeholder">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="post-build.ps1">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Components\Layout\" />
|
|
</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>
|