Skip to content

Commit

Permalink
merge with master
Browse files Browse the repository at this point in the history
  • Loading branch information
MNie committed Jan 5, 2021
2 parents 37163cc + 3b613d2 commit c2f03e4
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
dist: bionic
language: csharp
mono: none
dotnet: 3.0
dotnet: 5.0

install:
- dotnet restore
script:
- dotnet build -c Release
- dotnet test -c Release test/ResultType.Tests/ResultType.Tests.csproj
- dotnet test -c Release test/ResultType.Validation.Tests/ResultType.Validation.Tests.csproj

8 changes: 8 additions & 0 deletions src/ResultType.Validation/ResultType.Validation.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,16 @@
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>


<ItemGroup>
<ProjectReference Include="..\ResultType\ResultType.csproj" />
</ItemGroup>
Expand Down
8 changes: 8 additions & 0 deletions src/ResultType/ResultType.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>


</Project>

0 comments on commit c2f03e4

Please sign in to comment.