FileServer.csproj 928 B

12345678910111213141516171819202122232425262728
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <LangVersion>latest</LangVersion>
  4. <TargetFramework>net6.0</TargetFramework>
  5. </PropertyGroup>
  6. <PropertyGroup>
  7. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  8. </PropertyGroup>
  9. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  10. <OutputPath>../../FileServer/</OutputPath>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  13. <OutputPath>../../FileServer/</OutputPath>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <_ContentIncludedByDefault Remove="Properties\launchSettings.json" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <Content Update="appsettings.json">
  20. <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
  21. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  22. </Content>
  23. </ItemGroup>
  24. </Project>