Skip to content

Commit

Permalink
Implemented Source Link. (#5)
Browse files Browse the repository at this point in the history
* Enabled Source Link.
* Updated .NET SDK to v. 2.1.300 on Travis CI.
* Fixed missing documentation in the Debug configuration.
  • Loading branch information
aueda authored Sep 15, 2018
1 parent 610eb18 commit 59befb7
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
language: csharp
mono: none
dotnet: 2.0.0
dotnet: 2.1.300
dist: trusty
script:
- cd Maoli.Tests
- dotnet restore
- dotnet test
- dotnet test
24 changes: 22 additions & 2 deletions Maoli/Maoli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,24 @@
<Company />
<Copyright>Copyright (c) 2018 Adriano Ueda</Copyright>
<Description>Maoli is C# helper library for common brazilian business rules (CPF, CNPJ and CEP). For documentation visit https://github.com/aueda/maoli</Description>
<Version>0.2.5-alpha6</Version>
<Version>0.3.0</Version>
<PackageLicenseUrl>http://opensource.org/licenses/MIT</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/aueda/maoli</PackageProjectUrl>
<PackageTags>aspnet aspnetcore xamarin cnpj cpf cep</PackageTags>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net40|AnyCPU'">
<DocumentationFile>bin\Debug\net40\Maoli.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net45|AnyCPU'">
<DocumentationFile>bin\Debug\net45\Maoli.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net46|AnyCPU'">
<DocumentationFile>bin\Debug\net46\Maoli.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.1|AnyCPU'">
<DocumentationFile>bin\Debug\netstandard1.1\Maoli.xml</DocumentationFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net40|AnyCPU'">
Expand All @@ -23,5 +37,11 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard1.1|AnyCPU'">
<DocumentationFile>bin\Release\netstandard1.1\Maoli.xml</DocumentationFile>
</PropertyGroup>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-63127-02">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>

0 comments on commit 59befb7

Please sign in to comment.