-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDirectory.Build.props
66 lines (61 loc) · 3.88 KB
/
Directory.Build.props
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<Project>
<!-- Set common properties regarding assembly information and nuget packages -->
<PropertyGroup>
<Authors>Steven T. Cramer</Authors>
<Product>TimeWarpCli</Product>
</PropertyGroup>
<!-- Common compile parameters -->
<PropertyGroup>
<Nullable>disable</Nullable>
<LangVersion>preview</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<!-- We use full (Windows PDBs) until cross platform support for source link will get better -->
<DebugType>full</DebugType>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<!--Versions of packages used across the solution-->
<PropertyGroup Label="Package Versions">
<MicrosoftAspNetCoreBlazorHttpClientVersion>5.0.7</MicrosoftAspNetCoreBlazorHttpClientVersion>
<MicrosoftAspNetCoreComponentsWebAssemblyDevServerVersion>5.0.8</MicrosoftAspNetCoreComponentsWebAssemblyDevServerVersion>
<MicrosoftAspNetCoreComponentsWebAssemblyServerVersion>5.0.8</MicrosoftAspNetCoreComponentsWebAssemblyServerVersion>
<MicrosoftAspNetCoreComponentsWebAssemblyVersion>5.0.8</MicrosoftAspNetCoreComponentsWebAssemblyVersion>
<MicrosoftAspNetCoreMvcTestingVersion>5.0.8</MicrosoftAspNetCoreMvcTestingVersion>
<MicrosoftAspNetCoreSignalRClientVersion>5.0.8</MicrosoftAspNetCoreSignalRClientVersion>
<MicrosoftPlaywrightVersion>1.13.0</MicrosoftPlaywrightVersion>
<SystemConfigurationConfigurationManagerVersion>5.0.0</SystemConfigurationConfigurationManagerVersion>
<SystemNetHttpJsonVersion>5.0.0</SystemNetHttpJsonVersion>
<SystemServiceModelPrimitivesVersion>4.8.1</SystemServiceModelPrimitivesVersion>
<SystemTextJsonVersion>5.0.2</SystemTextJsonVersion>
<AutoMapperExtensionsMicrosoftDependencyInjectionVersion>8.1.1</AutoMapperExtensionsMicrosoftDependencyInjectionVersion>
<AutoMapperVersion>10.1.1</AutoMapperVersion>
<BlazorComponentUtilitiesVersion>1.7.1</BlazorComponentUtilitiesVersion>
<BlazorExtensionsLoggingVersion>0.4.0</BlazorExtensionsLoggingVersion>
<BlazorStateVersion>4.0.0</BlazorStateVersion>
<DawnGuardVersion>1.12.0</DawnGuardVersion>
<FixieConsoleVersion>2.2.1</FixieConsoleVersion>
<FixieVersion>2.2.2</FixieVersion>
<FluentAssertionsVersion>5.10.3</FluentAssertionsVersion>
<FluentValidationAspNetCoreVersion>10.3.0</FluentValidationAspNetCoreVersion>
<FluentValidationVersion>10.3.0</FluentValidationVersion>
<GrpcNetClientVersion>2.38.0</GrpcNetClientVersion>
<GrpcNetClientWebVersion>2.38.0</GrpcNetClientWebVersion>
<GrpcAspNetCoreWebVersion>2.38.0</GrpcAspNetCoreWebVersion>
<MediatrExtensionsMicrosoftDependencyInjectionVersion>9.0.0</MediatrExtensionsMicrosoftDependencyInjectionVersion>
<MediatrVersion>9.0.0</MediatrVersion>
<MicroElementsSwashbuckleFluentValidationVersion>5.2.0</MicroElementsSwashbuckleFluentValidationVersion>
<protobufnetGrpcAspNetCoreVersion>1.0.152</protobufnetGrpcAspNetCoreVersion>
<protobufnetGrpcReflectionVersion>1.0.152</protobufnetGrpcReflectionVersion>
<PeterLeslieMorrisBlazorFluentValidationVersion>1.7.0</PeterLeslieMorrisBlazorFluentValidationVersion>
<SeleniumSupportVersion>3.141.0</SeleniumSupportVersion>
<SeleniumWebDriverVersion>3.141.0</SeleniumWebDriverVersion>
<ShouldlyVersion>4.0.3</ShouldlyVersion>
<SwashbuckleAspNetCoreAnnotationsVersion>6.1.5</SwashbuckleAspNetCoreAnnotationsVersion>
<SwashbuckleAspNetCoreFiltersVersion>7.0.2</SwashbuckleAspNetCoreFiltersVersion>
<SwashbuckleAspNetCoreSwaggerGenVersion>6.1.5</SwashbuckleAspNetCoreSwaggerGenVersion>
<SwashbuckleAspNetCoreSwaggerUIVersion>6.1.5</SwashbuckleAspNetCoreSwaggerUIVersion>
<SwashbuckleAspNetCoreSwaggerVersion>6.1.5</SwashbuckleAspNetCoreSwaggerVersion>
</PropertyGroup>
</Project>