-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLocus.Sample.Console.csproj
More file actions
27 lines (22 loc) · 940 Bytes
/
Copy pathLocus.Sample.Console.csproj
File metadata and controls
27 lines (22 loc) · 940 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Locus\Locus.csproj" />
<ProjectReference Include="..\..\src\Locus.Core\Locus.Core.csproj" />
<ProjectReference Include="..\..\src\Locus.FileSystem\Locus.FileSystem.csproj" />
<ProjectReference Include="..\..\src\Locus.Storage\Locus.Storage.csproj" />
<ProjectReference Include="..\..\src\Locus.MultiTenant\Locus.MultiTenant.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" />
</ItemGroup>
<ItemGroup>
<Content Include="appsettings.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>