522b13ad83
- IOC - LAND - MON - TAB3
48 lines
1.8 KiB
XML
48 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<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="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="NLog" Version="5.3.4" />
|
|
<PackageReference Include="NLog.Web.AspNetCore" Version="5.3.14" />
|
|
<PackageReference Include="StackExchange.Redis" Version="2.8.16" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.9.0" />
|
|
</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>
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
<Exec Command="powershell.exe -ExecutionPolicy Unrestricted -NoProfile -NonInteractive -File $(ProjectDir)\post-build.ps1 -ProjectDir $(ProjectDir) -ProjectPath $(ProjectPath)" />
|
|
</Target>
|
|
</Project>
|