Skip to content

Commit

Permalink
Add HashCode dependency (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
StefH committed Jul 25, 2021
1 parent cb8190c commit 02b7d50
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 4 deletions.
13 changes: 10 additions & 3 deletions AnyOf Solution.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31424.327
# Visual Studio Version 17
VisualStudioVersion = 17.0.31512.422
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{0B71158B-576B-4498-9D40-141D554D1272}"
EndProject
Expand All @@ -24,7 +24,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{BDD6F175-13B7-48A1-BFFF-9ABAFF34A10D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AnyOfTests", "tests\AnyOfTests\AnyOfTests.csproj", "{D2E3F6EC-D490-4BD6-A9DB-66C8B86BD4D0}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AnyOfTests", "tests\AnyOfTests\AnyOfTests.csproj", "{D2E3F6EC-D490-4BD6-A9DB-66C8B86BD4D0}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClassLibrary", "examples\ClassLibrary\ClassLibrary.csproj", "{B5870672-561A-46EC-A936-7FE453B55729}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down Expand Up @@ -52,6 +54,10 @@ Global
{D2E3F6EC-D490-4BD6-A9DB-66C8B86BD4D0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D2E3F6EC-D490-4BD6-A9DB-66C8B86BD4D0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D2E3F6EC-D490-4BD6-A9DB-66C8B86BD4D0}.Release|Any CPU.Build.0 = Release|Any CPU
{B5870672-561A-46EC-A936-7FE453B55729}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B5870672-561A-46EC-A936-7FE453B55729}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B5870672-561A-46EC-A936-7FE453B55729}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B5870672-561A-46EC-A936-7FE453B55729}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -62,6 +68,7 @@ Global
{E29216D6-4ACE-4F08-BCB6-AE0584F5A7D7} = {38805E90-A955-4097-97DC-537F7A0CD773}
{CBE25FF6-ACDA-45A0-9B34-29F979063ECB} = {0B71158B-576B-4498-9D40-141D554D1272}
{D2E3F6EC-D490-4BD6-A9DB-66C8B86BD4D0} = {BDD6F175-13B7-48A1-BFFF-9ABAFF34A10D}
{B5870672-561A-46EC-A936-7FE453B55729} = {38805E90-A955-4097-97DC-537F7A0CD773}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3586BB89-A981-4CD0-88DB-2DF513FE2B90}
Expand Down
2 changes: 1 addition & 1 deletion GitHubReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
https://github.com/StefH/GitHubReleaseNotes

GitHubReleaseNotes --output ReleaseNotes.md --skip-empty-releases --exclude-labels question invalid doc --version 0.0.12
GitHubReleaseNotes --output ReleaseNotes.md --skip-empty-releases --exclude-labels question invalid doc --version 0.0.13
9 changes: 9 additions & 0 deletions examples/ClassLibrary/Class1.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
using System;

namespace ClassLibrary
{
public class Class1
{
HashCode hash = new HashCode();
}
}
11 changes: 11 additions & 0 deletions examples/ClassLibrary/ClassLibrary.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.1" />
</ItemGroup>

</Project>
1 change: 1 addition & 0 deletions src/AnyOfCodeGenerator/AnyOf.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.1" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down

0 comments on commit 02b7d50

Please sign in to comment.