-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
centralized project package dependency management, Directory.Build.,p…
…rops (#282)
- Loading branch information
1 parent
50b4b8f
commit 3cc4a46
Showing
9 changed files
with
54 additions
and
77 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,16 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
|
||
<packageSources> | ||
<clear /> | ||
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" /> | ||
<add key="akka-nightly" value="https://www.myget.org/F/akkadotnet/api/v3/index.json" /> | ||
<clear/> | ||
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" /> | ||
</packageSources> | ||
|
||
<packageSourceMapping> | ||
<!-- key value for <packageSource> should match key values from <packageSources> element --> | ||
<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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
</PropertyGroup> | ||
<!-- App dependencies --> | ||
<ItemGroup> | ||
<PackageVersion Include="Akka.Persistence.Sql.Common" Version="$(AkkaVersion)"/> | ||
<PackageVersion Include="Microsoft.Data.SqlClient" Version="3.0.1"/> | ||
</ItemGroup> | ||
|
||
<!-- Test dependencies --> | ||
<ItemGroup> | ||
<PackageVersion Include="FluentAssertions" Version="6.10.0" /> | ||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.4.1" /> | ||
<PackageVersion Include="xunit" Version="$(XunitVersion)" /> | ||
<PackageVersion Include="xunit.runner.visualstudio" Version="$(XunitVersion)" /> | ||
<PackageVersion Include="Akka.TestKit.Xunit2" Version="$(AkkaVersion)" /> | ||
<PackageVersion Include="Akka.Persistence.Sql.TestKit" Version="$(AkkaVersion)"/> | ||
<PackageVersion Include="Docker.DotNet" Version="3.125.12"/> | ||
</ItemGroup> | ||
|
||
<!-- SourceLink support for all Akka.NET projects --> | ||
<ItemGroup> | ||
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="1.1.1" /> | ||
</ItemGroup> | ||
|
||
</Project> |