-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apply Centralized Package Management
- Loading branch information
Showing
35 changed files
with
205 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageVersion Include="DotNet.ReproducibleBuilds" Version="1.1.1" /> | ||
<PackageVersion Include="MinVer" Version="4.0.0" /> | ||
|
||
<!-- NOTE see also usage of FSCorePackageVersion in Tool and Tests --> | ||
<PackageVersion Include="FSharp.Core" Version="4.5.4" /> | ||
|
||
<!-- Direct deps of public packages --> | ||
<PackageVersion Include="EventStore.Client.Grpc.Streams" Version="22.0.0" /> | ||
<PackageVersion Include="EventStore.Client" Version="22.0.0-preview" /> | ||
<PackageVersion Include="FsCodec" Version="3.0.0-rc.2.2" /> | ||
<PackageVersion Include="FSharp.Control.AsyncSeq" Version="2.0.23" /> | ||
<PackageVersion Include="FSharp.AWS.DynamoDB" Version="0.11.0-beta" /> | ||
<PackageVersion Include="FSharp.Control.AsyncSeq" Version="2.0.23" /> | ||
<PackageVersion Include="MathNet.Numerics" Version="5.0.0" /> | ||
<PackageVersion Include="Microsoft.Azure.Cosmos" Version="3.27.0" /> | ||
<PackageVersion Include="prometheus-net" Version="3.6.0" /> | ||
<PackageVersion Include="Serilog" Version="2.7.1" /> | ||
<PackageVersion Include="System.Reactive" Version="5.0.0" /> | ||
<PackageVersion Include="System.Runtime.Caching" Version="6.0.0" /> | ||
<PackageVersion Include="System.Text.Json" Version="6.0.1" /> | ||
|
||
<!-- Used by samples --> | ||
<PackageVersion Include="Argu" Version="6.1.1" /> | ||
<PackageVersion Include="Destructurama.FSharp" Version="1.2.0" /> | ||
<PackageVersion Include="FsCodec.NewtonsoftJson" Version="3.0.0-rc.2.2" /> | ||
<PackageVersion Include="FsCodec.SystemTextJson" Version="3.0.0-rc.2.2" /> | ||
<PackageVersion Include="FSharp.Control.AsyncSeq" Version="2.0.23" /> | ||
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" /> | ||
<PackageVersion Include="Serilog.AspNetCore" Version="3.2.0" /> | ||
<PackageVersion Include="Serilog.Sinks.Console" Version="4.0.1" /> | ||
<PackageVersion Include="Serilog.Sinks.Seq" Version="5.1.1" /> | ||
<PackageVersion Include="SqlStreamStore" Version="1.2.0-beta.8" /> | ||
<PackageVersion Include="SqlStreamStore.MySql" Version="1.2.0-beta.8" /> | ||
<PackageVersion Include="SqlStreamStore.MsSql" Version="1.2.0-beta.8" /> | ||
<PackageVersion Include="SqlStreamStore.Postgres" Version="1.2.0-beta.8" /> | ||
|
||
<!-- Used by tests --> | ||
<PackageVersion Include="FsCheck.xUnit" Version="2.16.4" /> | ||
<PackageVersion Include="JsonDiffPatch.Net" Version="2.3.0" /> | ||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.1.0" /> | ||
<PackageVersion Include="xunit" Version="2.4.1" /> | ||
<PackageVersion Include="xunit.runner.visualstudio" Version="2.4.3" /> | ||
<PackageVersion Include="unquote" Version="6.1.0" /> | ||
|
||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<add key="NuGet official package source" value="https://api.nuget.org/v3/index.json" /> | ||
<clear /> | ||
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> | ||
</packageSources> | ||
</configuration> | ||
<!-- (Hopefully temporary) Workaround warning NU1507: There are 2 package sources defined in your configuration. When using central package management, please map your package sources with package source mapping (https://aka.ms/nuget-package-source-mapping) or specify a single package source--> | ||
<packageSourceMapping> | ||
<packageSource key="nuget.org"> | ||
<package pattern="*" /> | ||
</packageSource> | ||
</packageSourceMapping> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.