FileServer.csproj 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp2.2</TargetFramework>
  4. <LangVersion>latest</LangVersion>
  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. <PackageReference Include="Microsoft.AspNetCore.App" />
  17. <PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.2.0" PrivateAssets="All" />
  18. <PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
  19. <PackageReference Include="Microsoft.Extensions.Configuration" Version="2.2.0" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <_ContentIncludedByDefault Remove="Properties\launchSettings.json" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <Content Update="appsettings.json">
  26. <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
  27. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  28. </Content>
  29. </ItemGroup>
  30. </Project>