MailWorker.csproj 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <RootNamespace>MailWorker</RootNamespace>
  5. <AssemblyName>MailWorker</AssemblyName>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <PackageReference Include="Microsoft.AspNetCore.DataProtection" />
  9. <PackageReference Include="Microsoft.Extensions.Hosting" />
  10. <PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" />
  11. <PackageReference Include="Serilog.Extensions.Hosting" />
  12. <PackageReference Include="Serilog.Sinks.File" />
  13. <PackageReference Include="Serilog.Sinks.Console" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\Application\Application.csproj" />
  17. <ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <None Update="appsettings.Development.json">
  21. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  22. </None>
  23. <None Update="appsettings.Production.json">
  24. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  25. <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
  26. </None>
  27. </ItemGroup>
  28. </Project>