SOMS/test/Web一键发布IIS/一键发布web服务.csproj

32 lines
793 B
XML
Raw Normal View History

2024-07-15 10:31:26 +08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>OneClickPublishWeb</RootNamespace>
</PropertyGroup>
<ItemGroup>
<None Remove="cfg\config.json" />
<None Remove="cfg\isas.pfx" />
</ItemGroup>
<ItemGroup>
<Content Include="cfg\config.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Web.Administration" Version="11.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>
<ItemGroup>
<Content Include="cfg\isas.pfx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>