Skip to content
This repository has been archived by the owner on Dec 3, 2019. It is now read-only.

Tweaks for chocolatey #2

Merged
merged 1 commit into from
Oct 30, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions Build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,13 @@ let isAppveyor = AppVeyor.detect()
let gitVersion = GitVersion.generateProperties id

Target.create "Clean" (fun _ ->
["reports" ; "nuget" ; "src/common"]
|> Shell.cleanDirs
["reports" ; "src/common" ; "nuget/lib"]
|> Seq.iter Directory.delete

!! "nuget/*"
-- "nuget/*.txt"
-- "nuget/*.nuspec"
|> File.deleteAll

let configuration =
(fun p -> { p with
Expand Down
666 changes: 666 additions & 0 deletions nuget/LICENSE.txt

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion Package.nuspec → nuget/Package.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
<authors>Stanley Goldman, Benjamin Grabkowitz, Justin Dearing</authors>
<owners>StanleyGoldman, profet, zippy1981</owners>
<licenseUrl>https://www.gnu.org/licenses/agpl-3.0.en.html</licenseUrl>
<projectUrl>https://github.com/justaprogrammer/BuildCrossCheck</projectUrl>
<projectUrl>https://github.com/justaprogrammer/BCC-Core</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>BuildCrossCheck Core Functionality</description>
<copyright>Copyright 2018</copyright>
<dependencies />
<tags>BuildCrossCheck GitHub CheckRun BuildTool</tags>
</metadata>
</package>
7 changes: 7 additions & 0 deletions nuget/VERIFICATION.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

This package is published by JustAProgrammer. Any binaries will be
identical to other package types published by the project, in particular
the BCC-Core NuGet package.
7 changes: 5 additions & 2 deletions src/BCC.Core.Tests/BCC.Core.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@
<PackageReference Include="FluentAssertions" Version="5.4.2" />
<PackageReference Include="FluentAssertions.Analyzers" Version="0.11.4" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.1.1" />
<PackageReference Include="xunit" Version="2.4.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/BCC.Core.sln
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{5E9CBCEE
..\appveyor.yml = ..\appveyor.yml
..\Build.fsx = ..\Build.fsx
..\codecov.yml = ..\codecov.yml
..\Package.nuspec = ..\Package.nuspec
..\nuget\Package.nuspec = ..\nuget\Package.nuspec
..\paket.dependencies = ..\paket.dependencies
EndProjectSection
EndProject
Expand Down