-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSudoku.Infrastructure.csproj
More file actions
29 lines (25 loc) · 1.37 KB
/
Sudoku.Infrastructure.csproj
File metadata and controls
29 lines (25 loc) · 1.37 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>$(MSBuildProjectName)</AssemblyName>
<RootNamespace>$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Sudoku.Domain\Sudoku.Domain.csproj" />
<ProjectReference Include="..\Sudoku.Application\Sudoku.Application.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Aspire.Microsoft.Azure.Cosmos" Version="9.4.1" />
<PackageReference Include="Azure.Identity" Version="1.15.0" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.25.0" />
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.53.0" />
<PackageReference Include="Microsoft.Extensions.Azure" Version="1.12.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.8" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.8" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.8" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="9.0.8" />
<PackageReference Include="System.Text.Json" Version="9.0.8" />
</ItemGroup>
</Project>