-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change common.props to Build Directory File and migrate to central package management #276
Merged
Merged
Changes from 3 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
ebdd2bc
Using Build.Directory.props
mhbuck 5880ebc
Rename NetCoreTestVersion to NetTestVersion
mhbuck cd6f830
Move to central package management
mhbuck 985e92c
Symbol Change
mhbuck 314fdf7
Push to latest lang version
mhbuck 28a4540
Cleanup
Arkatufus File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,16 +48,16 @@ Other Changes** | |
<AkkaVersion>1.5.8</AkkaVersion> | ||
<RedisVersion>2.6.111</RedisVersion> | ||
<DockerVersion>3.125.15</DockerVersion> | ||
<NetCoreTestVersion>netcoreapp3.1</NetCoreTestVersion> | ||
<NetTestVersion>net7.0</NetTestVersion> | ||
<NetStandardVersion>netstandard2.0</NetStandardVersion> | ||
<NetFrameworkTestVersion>net461</NetFrameworkTestVersion> | ||
<NetFrameworkTestVersion>net471</NetFrameworkTestVersion> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here also upgraded framework target to match the main project - Not sure if there are any implications. |
||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants> | ||
</PropertyGroup> | ||
<!-- SourceLink support for all Akka.NET projects --> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" /> | ||
<None Include="$(MSBuildThisFileDirectory)\..\README.md" Pack="true" Visible="false" PackagePath="\" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
|
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,39 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
</PropertyGroup> | ||
<!-- Library dependencies --> | ||
<ItemGroup> | ||
<PackageVersion Include="Akka" Version="$(AkkaVersion)" /> | ||
<PackageVersion Include="Akka.Persistence" Version="$(AkkaVersion)" /> | ||
<PackageVersion Include="Akka.Persistence.Query" Version="$(AkkaVersion)" /> | ||
<PackageVersion Include="Akka.Streams" Version="$(AkkaVersion)" /> | ||
<PackageVersion Include="StackExchange.Redis" Version="$(RedisVersion)" /> | ||
</ItemGroup> | ||
<!-- Test dependencies --> | ||
<ItemGroup> | ||
<PackageVersion Include="Akka.Cluster.Sharding" Version="$(AkkaVersion)" /> | ||
<PackageVersion Include="Akka.TestKit" Version="$(AkkaVersion)" /> | ||
<PackageVersion Include="Akka.Persistence.TCK" Version="$(AkkaVersion)" /> | ||
<PackageVersion Include="Akka.TestKit.Xunit2" Version="$(AkkaVersion)" /> | ||
<PackageVersion Include="Akka.Streams.TestKit" Version="$(AkkaVersion)" /> | ||
|
||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="$(TestSdkVersion)" /> | ||
<!-- Needed by Redis to run --> | ||
<PackageVersion Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" /> | ||
<PackageVersion Include="Docker.DotNet" Version="$(DockerVersion)" /> | ||
<PackageVersion Include="xunit" Version="$(XunitVersion)" /> | ||
<PackageVersion Include="xunit.runner.visualstudio" Version="$(XunitVersion)" /> | ||
|
||
<PackageVersion Include="coverlet.collector" Version="3.2.0" /> | ||
<PackageVersion Include="JetBrains.dotMemoryUnit" Version="3.2.20220510" /> | ||
</ItemGroup> | ||
<!--Custom Serialization Examples--> | ||
<ItemGroup> | ||
<PackageVersion Include="MessagePack" Version="2.5.108" /> | ||
</ItemGroup> | ||
<!-- SourceLink support for all Akka.NET projects --> | ||
<ItemGroup> | ||
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="1.1.1 "/> | ||
</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
4 changes: 1 addition & 3 deletions
4
src/examples/CustomSerialization.Protobuf/CustomSerialization.Protobuf.csproj
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sense check here - Instead of maintaining testing against netcoreapp 3.1 I changed it to just using net7 and renamed the property. This is more inline with what is done on the main Akka project