| 123456789101112131415161718192021222324252627282930313233 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <RootNamespace>MailWorker</RootNamespace>
- <AssemblyName>MailWorker</AssemblyName>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.AspNetCore.DataProtection" />
- <PackageReference Include="Microsoft.Extensions.Hosting" />
- <PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" />
- <PackageReference Include="Serilog.Extensions.Hosting" />
- <PackageReference Include="Serilog.Sinks.File" />
- <PackageReference Include="Serilog.Sinks.Console" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Application\Application.csproj" />
- <ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
- </ItemGroup>
- <ItemGroup>
- <None Update="appsettings.Development.json">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="appsettings.Production.json">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
- </None>
- </ItemGroup>
- </Project>
|