Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
martinothamar committed Oct 22, 2020
1 parent 605f827 commit 47ceafa
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use cases this library supports will be easier to achieve without this libray.
Add to your project file:

```xml
<PackageReference Include="WrapperValueObject.Generator" Version="0.0.1-alpha04">
<PackageReference Include="WrapperValueObject.Generator" Version="0.0.1-alpha05">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
Expand All @@ -27,7 +27,7 @@ Add to your project file:
Or install via CLI

```sh
dotnet add package WrapperValueObject.Generator --version 0.0.1-alpha04
dotnet add package WrapperValueObject.Generator --version 0.0.1-alpha05
```

## Usage
Expand Down
2 changes: 2 additions & 0 deletions test/WrapperValueObject.TestConsole/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ static void Main()
Debug.Assert(match.Result != default);
Debug.Assert(match.Result.HomeGoals == 2);
Debug.Assert(match.Result.AwayGoals == 1);

Console.WriteLine("Success!!");
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<!--<ItemGroup>
<ProjectReference Include="..\..\src\WrapperValueObject.Generator\WrapperValueObject.Generator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
</ItemGroup>
</ItemGroup>-->

<!--<ItemGroup>
<PackageReference Include="WrapperValueObject.Generator" Version="0.0.1-alpha04">
<ItemGroup>
<PackageReference Include="WrapperValueObject.Generator" Version="0.0.1-alpha05">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>-->
</ItemGroup>

</Project>

0 comments on commit 47ceafa

Please sign in to comment.