Skip to content

Commit

Permalink
Added public apis and configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
david-driscoll committed Nov 24, 2019
1 parent e140e1c commit cee60e8
Show file tree
Hide file tree
Showing 16 changed files with 667 additions and 220 deletions.
422 changes: 211 additions & 211 deletions .editorconfig

Large diffs are not rendered by default.

437 changes: 437 additions & 0 deletions .editorconfig.ruleset

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -206,4 +206,5 @@ src/Cake.Scripts/tools/tools/
codealike.json

# Rider
.idea/
.idea/
global.json
12 changes: 12 additions & 0 deletions Directory.Build.targets
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<Sdk Name="Microsoft.Build.CentralPackageVersions" Version="2.0.52" />
<PropertyGroup>
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)\.editorconfig.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<!-- .editorconfig analyzer work around -->
<!--
<PropertyGroup>
SkipDefaultEditorConfigAsAdditionalFile>true</SkipDefaultEditorConfigAsAdditionalFile>
</PropertyGroup>
<ItemGroup>
<AdditionalFiles Condition="Exists('$(MSBuildThisFileDirectory)\.editorconfig')" Include="$(MSBuildThisFileDirectory)\.editorconfig" />
</ItemGroup>
-->
</Project>
9 changes: 1 addition & 8 deletions Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,9 @@
<GlobalPackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19554-01" />
<GlobalPackageReference Include="Roslynator.Analyzers" Version="2.2.0" />
</ItemGroup>
<!-- .editorconfig analyzer work around -->
<PropertyGroup>
<SkipDefaultEditorConfigAsAdditionalFile>true</SkipDefaultEditorConfigAsAdditionalFile>
</PropertyGroup>
<ItemGroup Condition="Exists('$(MSBuildThisFileDirectory)\.editorconfig')">
<AdditionalFiles Include="$(MSBuildThisFileDirectory)\.editorconfig" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="GitVersion.Tool" Version="5.1.2" />
<PackageReference Update="JetBrains.ReSharper.CommandLineTools" Version="2019.2.3" />
<PackageReference Update="JetBrains.ReSharper.CommandLineTools" Version="2019.3.0-eap06" />
<PackageReference Update="Nuke.Common" Version="0.23.4" />
<PackageReference Update="ReportGenerator" Version="4.3.6" />
<PackageReference Update="Rocket.Surgery.Nuke.DotNetCore" Version="0.8.3" />
Expand Down
Empty file added src/CI/PublicAPI.Shipped.txt
Empty file.
Empty file added src/CI/PublicAPI.Unshipped.txt
Empty file.
4 changes: 4 additions & 0 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,8 @@
<IsPackable>true</IsPackable>
<NoWarn>NU5105;$(NoWarn)</NoWarn>
</PropertyGroup>
<ItemGroup>
<AdditionalFiles Condition="Exists('PublicAPI.Shipped.txt')" Include="PublicAPI.Shipped.txt" />
<AdditionalFiles Condition="Exists('PublicAPI.Unshipped.txt')" Include="PublicAPI.Unshipped.txt" />
</ItemGroup>
</Project>
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.

0 comments on commit cee60e8

Please sign in to comment.