-
Notifications
You must be signed in to change notification settings - Fork 5
/
Directory.Build.props
63 lines (63 loc) · 3.92 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
<Project>
<!-- Set common properties regarding assembly information and nuget packages -->
<PropertyGroup>
<Authors>Wallet Framework Dotnet Maintainers</Authors>
<Company>OWF</Company>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/openwallet-foundation-labs/wallet-framework-dotnet</PackageProjectUrl>
<PackageTags>Wallet Framework for Dotnet</PackageTags>
<Product>Wallet Framework for .NET</Product>
<RepositoryUrl>https://github.com/openwallet-foundation-labs/wallet-framework-dotnet.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Version>2.0.0</Version>
</PropertyGroup>
<!-- Common compile parameters -->
<PropertyGroup>
<!-- We use full (Windows PDBs) until cross platform support for source link will get better -->
<DebugType>full</DebugType>
<LangVersion>latest</LangVersion>
<NoWarn>$(NoWarn);1591</NoWarn>
<Nullable>disable</Nullable>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
</PropertyGroup>
<!--Versions of packages used across the repository-->
<PropertyGroup Label="Package Versions">
<MicrosoftAspNetCoreHttpAbstractionsVersion>2.2.0</MicrosoftAspNetCoreHttpAbstractionsVersion>
<MicrosoftAspNetCoreHttpExtensionsVersion>2.2.0</MicrosoftAspNetCoreHttpExtensionsVersion>
<MicrosoftAspNetCoreHttpVersion>2.2.2</MicrosoftAspNetCoreHttpVersion>
<MicrosoftCodeAnalysisFxCopAnalyzersVersion>3.0.0</MicrosoftCodeAnalysisFxCopAnalyzersVersion>
<MicrosoftExtensionsHostingVersion>3.1.5</MicrosoftExtensionsHostingVersion>
<MicrosoftExtensionsHttpVersion>3.1.5</MicrosoftExtensionsHttpVersion>
<MicrosoftExtensionsLoggingVersion>3.1.5</MicrosoftExtensionsLoggingVersion>
<MicrosoftNETTestSdkVersion>16.6.1</MicrosoftNETTestSdkVersion>
<SystemReactiveLinqVersion>4.4.1</SystemReactiveLinqVersion>
<SystemTextJsonVersion>4.7.2</SystemTextJsonVersion>
<AutofacExtensionsDependencyInjectionVersion>6.0.0</AutofacExtensionsDependencyInjectionVersion>
<DawnGuardVersion>1.12.0</DawnGuardVersion>
<FluentAssertionsVersion>5.10.3</FluentAssertionsVersion>
<FluentValidationAspNetCoreVersion>9.2.0</FluentValidationAspNetCoreVersion>
<FluentValidationVersion>9.2.0</FluentValidationVersion>
<FlurlVersion>2.8.2</FlurlVersion>
<WalletFrameworkIndySdkVersion>2.0.1</WalletFrameworkIndySdkVersion>
<HyperledgerIndyVdrVersion>0.4.2-alpha</HyperledgerIndyVdrVersion>
<MediatrExtensionsMicrosoftDependencyInjectionVersion>8.0.1</MediatrExtensionsMicrosoftDependencyInjectionVersion>
<MediatrVersion>8.0.2</MediatrVersion>
<MicroElementsSwashbuckleFluentValidationVersion>4.0.0</MicroElementsSwashbuckleFluentValidationVersion>
<MoqVersion>4.14.5</MoqVersion>
<MultiformatsBaseVersion>2.0.2</MultiformatsBaseVersion>
<NewtonsoftJsonVersion>13.0.1</NewtonsoftJsonVersion>
<NLogConfigVersion>4.7.2</NLogConfigVersion>
<PollyVersion>7.2.1</PollyVersion>
<StatelessVersion>5.1.2</StatelessVersion>
<SwashbuckleAspNetCoreAnnotationsVersion>5.5.1</SwashbuckleAspNetCoreAnnotationsVersion>
<SwashbuckleAspNetCoreFiltersVersion>5.1.2</SwashbuckleAspNetCoreFiltersVersion>
<SwashbuckleAspNetCoreSwaggerGenVersion>5.5.1</SwashbuckleAspNetCoreSwaggerGenVersion>
<SwashbuckleAspNetCoreSwaggerUIVersion>5.5.1</SwashbuckleAspNetCoreSwaggerUIVersion>
<SwashbuckleAspNetCoreSwaggerVersion>5.5.1</SwashbuckleAspNetCoreSwaggerVersion>
<XunitRunnerVisualstudioVersion>2.4.2</XunitRunnerVisualstudioVersion>
<XunitVersion>2.7.0</XunitVersion>
</PropertyGroup>
</Project>