12345678910111213141516171819202122232425262728 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <PropertyGroup>
- <LangVersion>latest</LangVersion>
- <TargetFramework>net6.0</TargetFramework>
- </PropertyGroup>
- <PropertyGroup>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
- <OutputPath>../../FileServer/</OutputPath>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <OutputPath>../../FileServer/</OutputPath>
- </PropertyGroup>
- <ItemGroup>
- <_ContentIncludedByDefault Remove="Properties\launchSettings.json" />
- </ItemGroup>
- <ItemGroup>
- <Content Update="appsettings.json">
- <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- </Project>
|