App.Gover.Gateway.csproj 732 B

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>netcoreapp2.1</TargetFramework>
  5. <Version>2.0.1</Version>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <Compile Include="..\..\Gateway\App.Gateway\Program.cs" />
  9. </ItemGroup>
  10. <ItemGroup>
  11. <Content Include="appsettings.json">
  12. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  13. </Content>
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\..\Sers\Sers.Gateway\Sers.Gateway.csproj" />
  17. </ItemGroup>
  18. <Target Name="PreBuild" BeforeTargets="PreBuildEvent">
  19. <Exec Command="xcopy &quot;$(ProjectDir)wwwroot&quot; &quot;$(TargetDir)\wwwroot&quot; /e /i /r /y" />
  20. </Target>
  21. </Project>