-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMeow.csproj
More file actions
30 lines (25 loc) · 1.01 KB
/
Meow.csproj
File metadata and controls
30 lines (25 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" />
<PackageReference Include="Rebus" />
<PackageReference Include="Rebus.RabbitMq" />
<PackageReference Include="Rebus.ServiceProvider" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Libraries\EnvironmentSetup\EnvironmentSetup.csproj" />
<ProjectReference Include="..\Libraries\Infrastructure\Infrastructure.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>