generated from nventive/Template
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathApplicationTemplate.Access.csproj
More file actions
34 lines (30 loc) · 1.72 KB
/
ApplicationTemplate.Access.csproj
File metadata and controls
34 lines (30 loc) · 1.72 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
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14.0</LangVersion>
<RootNamespace>ApplicationTemplate.DataAccess</RootNamespace>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors Condition="'$(Configuration)'=='Release'">true</TreatWarningsAsErrors>
<!-- Disable warning SYSLIB0030 because it's triggered by generated files from System.Text.Json. -->
<NoWarn>$(NoWarn);SYSLIB0020</NoWarn>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="ApiClients\DadJokes\DadJokesApiClientMock.FetchData.json" />
<EmbeddedResource Include="ApiClients\Posts\PostsApiClientMock.GetAll.json" />
<EmbeddedResource Include="ApiClients\UserProfile\UserProfileApiClientMock.Get.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DynamicData" Version="9.4.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="10.0.1" />
<PackageReference Include="Reactive.Annex" Version="2.0.1" />
<PackageReference Include="Refit" Version="9.0.2" />
<PackageReference Include="ReviewService.Abstractions" Version="1.0.0" />
<PackageReference Include="MallardMessageHandlers" Version="2.0.0" />
<PackageReference Include="Nventive.Persistence.Reactive" Version="0.5.0" />
<PackageReference Include="Nventive.Persistence" Version="0.5.0" />
<PackageReference Include="System.Reactive" Version="6.1.0" />
</ItemGroup>
</Project>