Skip to content

Commit 52c08af

Browse files
committed
chore(*): move all dependencies in Directory.Build.props file and fix build errors
1 parent 41693e2 commit 52c08af

File tree

20 files changed

+102
-99
lines changed

20 files changed

+102
-99
lines changed

Directory.Build.props

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<Project>
2+
3+
<PropertyGroup>
4+
<NetStandardVersion>netstandard2.0</NetStandardVersion>
5+
<AspNetCoreVersion>2.0.1</AspNetCoreVersion>
6+
<EFCoreVersion>2.0.1</EFCoreVersion>
7+
<MicrosoftLoggingVersion>2.0.0</MicrosoftLoggingVersion>
8+
<MicrosoftConfigurationVersion>2.0.0</MicrosoftConfigurationVersion>
9+
<TuplesVersion>4.4.0</TuplesVersion>
10+
</PropertyGroup>
11+
12+
<!-- Test Project Dependencies -->
13+
<PropertyGroup>
14+
<NetCoreAppVersion>netcoreapp2.0</NetCoreAppVersion>
15+
<MicrosoftOptionsVersion>2.0.0</MicrosoftOptionsVersion>
16+
<NpgsqlPostgreSQLVersion>2.0.0</NpgsqlPostgreSQLVersion>
17+
<NpgsqlVersion>3.2.6</NpgsqlVersion>
18+
<EFCoreToolsVersion>2.0.1</EFCoreToolsVersion>
19+
<TestSdkVersion>15.3.0-preview-20170427-09</TestSdkVersion>
20+
<TestHostVersion>1.1.2</TestHostVersion>
21+
<XUnitVersion>2.3.0-beta3-build3705</XUnitVersion>
22+
<BogusVersion>15.0.3</BogusVersion>
23+
<MoqVersion>4.7.99</MoqVersion>
24+
</PropertyGroup>
25+
26+
</Project>

src/Examples/JsonApiDotNetCoreExample/JsonApiDotNetCoreExample.csproj

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,22 @@
1313
</ItemGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.0.0" />
17-
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="2.0.0" />
18-
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="2.0.0" />
19-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.0.0" />
20-
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="2.0.0" />
21-
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.0.0" />
22-
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.0.0" />
23-
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="2.0.0" />
24-
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="2.0.0" />
25-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.0.0" />
26-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="2.0.0" />
27-
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="2.0.0" />
28-
<PackageReference Include="DotNetCoreDocs" Version="0.4.0" />
16+
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="$(AspNetCoreVersion)" />
17+
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="$(MicrosoftConfigurationVersion)" />
18+
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="$(MicrosoftConfigurationVersion)" />
19+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="$(MicrosoftConfigurationVersion)" />
20+
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="$(MicrosoftConfigurationVersion)" />
21+
<PackageReference Include="Microsoft.Extensions.Logging" Version="$(MicrosoftLoggingVersion)" />
22+
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="$(MicrosoftLoggingVersion)" />
23+
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="$(MicrosoftLoggingVersion)" />
24+
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="$(MicrosoftOptionsVersion)" />
25+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="$(EFCoreToolsVersion)" />
26+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="$(EFCoreToolsVersion)" />
27+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="$(NpgsqlPostgreSQLVersion)" />
2928
</ItemGroup>
3029

3130
<ItemGroup>
32-
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="1.0.0" />
31+
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="$(EFCoreToolsVersion)" />
3332
</ItemGroup>
3433

3534
</Project>

src/Examples/JsonApiDotNetCoreExample/Startup.cs

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
using JsonApiDotNetCoreExample.Data;
77
using Microsoft.EntityFrameworkCore;
88
using JsonApiDotNetCore.Extensions;
9-
using DotNetCoreDocs.Configuration;
10-
using DotNetCoreDocs.Middleware;
119
using System;
1210

1311
namespace JsonApiDotNetCoreExample
@@ -30,8 +28,7 @@ public Startup(IHostingEnvironment env)
3028
public virtual IServiceProvider ConfigureServices(IServiceCollection services)
3129
{
3230
var loggerFactory = new LoggerFactory();
33-
loggerFactory
34-
.AddConsole(LogLevel.Trace);
31+
loggerFactory.AddConsole(LogLevel.Trace);
3532
services.AddSingleton<ILoggerFactory>(loggerFactory);
3633

3734
services.AddDbContext<AppDbContext>(options =>
@@ -46,8 +43,6 @@ public virtual IServiceProvider ConfigureServices(IServiceCollection services)
4643
opt.IncludeTotalRecordCount = true;
4744
});
4845

49-
services.AddDocumentationConfiguration(Config);
50-
5146
var provider = services.BuildServiceProvider();
5247
var appContext = provider.GetRequiredService<AppDbContext>();
5348
if(appContext == null)
@@ -67,14 +62,9 @@ public virtual void Configure(
6762
loggerFactory.AddConsole(Config.GetSection("Logging"));
6863
loggerFactory.AddDebug();
6964

70-
app.UseDocs();
71-
7265
app.UseJsonApi();
7366
}
7467

75-
public string GetDbConnectionString()
76-
{
77-
return Config["Data:DefaultConnection"];
78-
}
68+
public string GetDbConnectionString() => Config["Data:DefaultConnection"];
7969
}
8070
}
Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"Data": {
3-
"DefaultConnection": "Host=localhost;Port=5432;Database=JsonApiDotNetCoreExample;User ID=postgres;Password=password"
3+
"DefaultConnection":
4+
"Host=localhost;Port=5432;Database=JsonApiDotNetCoreExample;User ID=postgres;Password=password"
45
},
56
"Logging": {
67
"IncludeScopes": false,
@@ -9,10 +10,5 @@
910
"System": "Trace",
1011
"Microsoft": "Trace"
1112
}
12-
},
13-
"DocsConfiguration": {
14-
"BaseAddress": "http://localhost:5000",
15-
"RequestsDirectory": "../../src/JsonApiDotNetCoreExample/_data",
16-
"DocumentationRoute": "/docs"
1713
}
1814
}

src/Examples/NoEntityFrameworkExample/NoEntityFrameworkExample.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp2.0</TargetFramework>
4+
<TargetFramework>$(NetCoreAppVersion)</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>
@@ -14,11 +14,11 @@
1414
</ItemGroup>
1515

1616
<ItemGroup>
17-
<PackageReference Include="Microsoft.AspNetCore" Version="2.0.0" />
18-
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.0.0" />
19-
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="2.0.0" />
20-
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="2.0.0" />
21-
<PackageReference Include="Npgsql" Version="3.2.5" />
17+
<PackageReference Include="Microsoft.AspNetCore" Version="$(AspNetCoreVersion)" />
18+
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="$(AspNetCoreVersion)" />
19+
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="$(MicrosoftLoggingVersion)" />
20+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="$(NpgsqlPostgreSQLVersion)" />
21+
<PackageReference Include="Npgsql" Version="$(NpgsqlVersion)" />
2222
<PackageReference Include="Dapper" Version="1.50.2" />
2323
</ItemGroup>
2424

src/Examples/ReportsExample/ReportsExample.csproj

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp1.0</TargetFramework>
5-
<RuntimeFrameworkVersion>1.1.1</RuntimeFrameworkVersion>
4+
<TargetFramework>$(NetCoreAppVersion)</TargetFramework>
65
</PropertyGroup>
76

87
<ItemGroup>
@@ -14,11 +13,11 @@
1413
</ItemGroup>
1514

1615
<ItemGroup>
17-
<PackageReference Include="Microsoft.AspNetCore" Version="1.1.2" />
18-
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.3" />
19-
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.2" />
20-
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="1.1.0" />
21-
<PackageReference Include="Npgsql" Version="3.2.2" />
16+
<PackageReference Include="Microsoft.AspNetCore" Version="$(AspNetCoreVersion)" />
17+
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="$(AspNetCoreVersion)" />
18+
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="$(MicrosoftLoggingVersion)" />
19+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="$(NpgsqlPostgreSQLVersion)" />
20+
<PackageReference Include="Npgsql" Version="$(NpgsqlVersion)" />
2221
<PackageReference Include="Dapper" Version="1.50.2" />
2322
</ItemGroup>
2423

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<VersionPrefix>2.2.0</VersionPrefix>
4-
<TargetFrameworks>netcoreapp2.0</TargetFrameworks>
4+
<TargetFrameworks>$(NetStandardVersion)</TargetFrameworks>
55
<AssemblyName>JsonApiDotNetCore</AssemblyName>
66
<PackageId>JsonApiDotNetCore</PackageId>
77
</PropertyGroup>
@@ -14,10 +14,10 @@
1414
<RepositoryUrl>https://github.com/Research-Institute/json-api-dotnet-core</RepositoryUrl>
1515
</PropertyGroup>
1616
<ItemGroup>
17-
<PackageReference Include="Microsoft.AspNetCore.Routing" Version="2.0.0" />
18-
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.0.0" />
19-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.0.0" />
20-
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.0.0" />
21-
<PackageReference Include="System.ValueTuple" Version="4.4.0" />
17+
<PackageReference Include="Microsoft.AspNetCore.Routing" Version="$(AspNetCoreVersion)" />
18+
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="$(AspNetCoreVersion)" />
19+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="$(EFCoreVersion)" />
20+
<PackageReference Include="Microsoft.Extensions.Logging" Version="$(MicrosoftLoggingVersion)" />
21+
<PackageReference Include="System.ValueTuple" Version="$(TuplesVersion)" />
2222
</ItemGroup>
2323
</Project>

test/JsonApiDotNetCoreExampleTests/Acceptance/Extensibility/RequestMetaTests.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
using Microsoft.AspNetCore.TestHost;
66
using Xunit;
77
using JsonApiDotNetCoreExample.Models;
8-
using DotNetCoreDocs;
98
using JsonApiDotNetCoreExample;
10-
using DotNetCoreDocs.Writers;
119
using Newtonsoft.Json;
1210
using JsonApiDotNetCore.Models;
1311
using System.Collections;

test/JsonApiDotNetCoreExampleTests/Acceptance/Spec/DocumentTests/PagingTests.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
using System.Net;
22
using System.Net.Http;
33
using System.Threading.Tasks;
4-
using DotNetCoreDocs;
5-
using DotNetCoreDocs.Writers;
64
using JsonApiDotNetCoreExample;
75
using Microsoft.AspNetCore.Hosting;
86
using Microsoft.AspNetCore.TestHost;

test/JsonApiDotNetCoreExampleTests/Acceptance/Spec/DocumentTests/Relationships.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
using System.Net;
22
using System.Net.Http;
33
using System.Threading.Tasks;
4-
using DotNetCoreDocs;
5-
using DotNetCoreDocs.Writers;
64
using JsonApiDotNetCoreExample;
75
using Microsoft.AspNetCore.Hosting;
86
using Microsoft.AspNetCore.TestHost;

test/JsonApiDotNetCoreExampleTests/Acceptance/TodoItemsControllerTests.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
using System.Net.Http.Headers;
66
using System.Threading.Tasks;
77
using Bogus;
8-
using DotNetCoreDocs.Models;
98
using JsonApiDotNetCore.Serialization;
109
using JsonApiDotNetCore.Services;
1110
using JsonApiDotNetCoreExample;
@@ -503,8 +502,6 @@ public async Task Can_Delete_TodoItem()
503502
request.Content = new StringContent(string.Empty);
504503
request.Content.Headers.ContentType = new MediaTypeHeaderValue("application/vnd.api+json");
505504

506-
var description = new RequestProperties("Delete TodoItem");
507-
508505
// Act
509506
var response = await _fixture.Client.SendAsync(request);
510507

test/JsonApiDotNetCoreExampleTests/Helpers/Startups/AuthorizedStartup.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
using JsonApiDotNetCoreExample.Data;
55
using Microsoft.EntityFrameworkCore;
66
using JsonApiDotNetCore.Extensions;
7-
using DotNetCoreDocs.Configuration;
87
using System;
98
using JsonApiDotNetCoreExample;
109
using Moq;
@@ -47,8 +46,6 @@ public override IServiceProvider ConfigureServices(IServiceCollection services)
4746
services.AddSingleton<IAuthorizationService>(authServicMock.Object);
4847
services.AddScoped<IEntityRepository<TodoItem>, AuthorizedTodoItemsRepository>();
4948

50-
services.AddDocumentationConfiguration(Config);
51-
5249
return services.BuildServiceProvider();
5350
}
5451
}

test/JsonApiDotNetCoreExampleTests/Helpers/Startups/ClientGeneratedIdsStartup.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
using JsonApiDotNetCoreExample.Data;
55
using Microsoft.EntityFrameworkCore;
66
using JsonApiDotNetCore.Extensions;
7-
using DotNetCoreDocs.Configuration;
87
using System;
98
using JsonApiDotNetCoreExample;
109

@@ -37,8 +36,6 @@ public override IServiceProvider ConfigureServices(IServiceCollection services)
3736
opt.AllowClientGeneratedIds = true;
3837
});
3938

40-
services.AddDocumentationConfiguration(Config);
41-
4239
return services.BuildServiceProvider();
4340
}
4441
}

test/JsonApiDotNetCoreExampleTests/Helpers/Startups/MetaStartup.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
using JsonApiDotNetCoreExample.Data;
55
using Microsoft.EntityFrameworkCore;
66
using JsonApiDotNetCore.Extensions;
7-
using DotNetCoreDocs.Configuration;
87
using System;
98
using JsonApiDotNetCoreExample;
109
using JsonApiDotNetCore.Services;
@@ -39,7 +38,6 @@ public override IServiceProvider ConfigureServices(IServiceCollection services)
3938
opt.IncludeTotalRecordCount = true;
4039
});
4140

42-
services.AddDocumentationConfiguration(Config);
4341
services.AddScoped<IRequestMeta, MetaService>();
4442

4543
return services.BuildServiceProvider();

test/JsonApiDotNetCoreExampleTests/JsonApiDotNetCoreExampleTests.csproj

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp2.0</TargetFramework>
4+
<TargetFramework>$(NetCoreAppVersion)</TargetFramework>
55
<PreserveCompilationContext>true</PreserveCompilationContext>
66
<AssemblyName>JsonApiDotNetCoreExampleTests</AssemblyName>
77
<OutputType>Exe</OutputType>
@@ -22,12 +22,13 @@
2222
</ItemGroup>
2323

2424
<ItemGroup>
25-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
25+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(TestSdkVersion)" />
26+
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="$(AspNetCoreVersion)" />
2627
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0" />
27-
<PackageReference Include="xunit" Version="2.2.0" />
28-
<PackageReference Include="Bogus" Version="17.0.1" />
28+
<PackageReference Include="xunit" Version="$(XUnitVersion)" />
29+
<PackageReference Include="Bogus" Version="$(BogusVersion)" />
2930
<PackageReference Include="Microsoft.DotNet.InternalAbstractions" Version="1.0.0" />
30-
<PackageReference Include="Moq" Version="4.7.99" />
31+
<PackageReference Include="Moq" Version="$(MoqVersion)" />
3132
</ItemGroup>
3233

3334
</Project>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 15.00
3+
# Visual Studio 2017
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JsonApiDotNetCoreExampleTests", "JsonApiDotNetCoreExampleTests.csproj", "{54F94127-E63E-4ADA-9B20-367EC2F6E3D6}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Debug|Any CPU = Debug|Any CPU
9+
Release|Any CPU = Release|Any CPU
10+
EndGlobalSection
11+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
12+
{54F94127-E63E-4ADA-9B20-367EC2F6E3D6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13+
{54F94127-E63E-4ADA-9B20-367EC2F6E3D6}.Debug|Any CPU.Build.0 = Debug|Any CPU
14+
{54F94127-E63E-4ADA-9B20-367EC2F6E3D6}.Release|Any CPU.ActiveCfg = Release|Any CPU
15+
{54F94127-E63E-4ADA-9B20-367EC2F6E3D6}.Release|Any CPU.Build.0 = Release|Any CPU
16+
EndGlobalSection
17+
EndGlobal
Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"Data": {
3-
"DefaultConnection": "Host=localhost;Port=5432;Database=JsonApiDotNetCoreExample;User ID=postgres;Password="
3+
"DefaultConnection":
4+
"Host=localhost;Port=5432;Database=JsonApiDotNetCoreExample;User ID=postgres;Password="
45
},
56
"Logging": {
67
"IncludeScopes": false,
@@ -9,10 +10,5 @@
910
"System": "Information",
1011
"Microsoft": "Information"
1112
}
12-
},
13-
"DocsConfiguration": {
14-
"BaseAddress": "http://localhost:5000",
15-
"RequestsDirectory": "../../src/JsonApiDotNetCoreExample/_data",
16-
"DocumentationRoute": "/docs"
1713
}
18-
}
14+
}

test/NoEntityFrameworkTests/NoEntityFrameworkTests.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp2.0</TargetFramework>
4+
<TargetFramework>$(NetCoreAppVersion)</TargetFramework>
55
<PreserveCompilationContext>true</PreserveCompilationContext>
66
<AssemblyName>NoEntityFrameworkTests</AssemblyName>
77
<OutputType>Exe</OutputType>
@@ -20,12 +20,12 @@
2020
<ProjectReference Include="../../src/Examples/NoEntityFrameworkExample/NoEntityFrameworkExample.csproj" />
2121
</ItemGroup>
2222
<ItemGroup>
23-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
23+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(TestSdkVersion)" />
2424
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0" />
25-
<PackageReference Include="xunit" Version="2.2.0" />
26-
<PackageReference Include="Bogus" Version="17.0.1" />
25+
<PackageReference Include="xunit" Version="$(XUnitVersion)" />
26+
<PackageReference Include="Bogus" Version="$(BogusVersion)" />
2727
<PackageReference Include="Microsoft.DotNet.InternalAbstractions" Version="1.0.0" />
28-
<PackageReference Include="Moq" Version="4.7.99" />
28+
<PackageReference Include="Moq" Version="$(MoqVersion)" />
2929
</ItemGroup>
3030

3131
</Project>

0 commit comments

Comments
 (0)