-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMX.GeoLocation.Api.Client.Testing.csproj
More file actions
31 lines (26 loc) · 1.29 KB
/
MX.GeoLocation.Api.Client.Testing.csproj
File metadata and controls
31 lines (26 loc) · 1.29 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net9.0;net10.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>MX.GeoLocation.Api.Client.Testing</PackageId>
<Product>Molyneux.IO GeoLocation</Product>
<Title>GeoLocation API Client Testing</Title>
<Description>Test helpers for consumer apps: in-memory fakes of IGeoLocationApiClient, DTO factory methods, and DI extensions for integration tests.</Description>
<PackageProjectUrl>https://github.com/frasermolyneux/geo-location</PackageProjectUrl>
<RepositoryUrl>https://github.com/frasermolyneux/geo-location</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MX.Api.Abstractions" Version="2.3.31" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MX.GeoLocation.Abstractions.V1\MX.GeoLocation.Abstractions.V1.csproj" />
<ProjectReference Include="..\MX.GeoLocation.Api.Client.V1\MX.GeoLocation.Api.Client.V1.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>