Skip to content

Commit

Permalink
Fixed build remove unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
phatboyg committed Oct 16, 2016
1 parent c815d06 commit 2221949
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 15 deletions.
12 changes: 0 additions & 12 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,17 +108,6 @@ Target "Build" (fun _ ->
|> DoNothing
)

let testDlls = !! ("./src/Topshelf.Tests/bin/Release/*.Tests.dll")

Target "UnitTests" (fun _ ->
testDlls
|> NUnit (fun p ->
{p with
Framework = "v4.0.30319"
DisableShadowCopy = true;
OutputFile = buildArtifactPath + "/nunit-test-results.xml"})
)

type packageInfo = {
Project: string
PackageFile: string
Expand Down Expand Up @@ -187,7 +176,6 @@ Target "Default" (fun _ ->
"Clean"
==> "RestorePackages"
==> "Build"
==> "UnitTests"
==> "Package"
==> "Default"

Expand Down
6 changes: 3 additions & 3 deletions src/SolutionVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
[assembly: AssemblyDescriptionAttribute("Topshelf is an open source project for hosting services without friction. By referencing Topshelf, your console application *becomes* a service installer with a comprehensive set of command-line options for installing, configuring, and running your application as a service.")]
[assembly: AssemblyProductAttribute("Topshelf")]
[assembly: AssemblyVersionAttribute("4.0.0.0")]
[assembly: AssemblyFileVersionAttribute("4.0.1.0")]
[assembly: AssemblyInformationalVersionAttribute("4.0.1.0")]
[assembly: AssemblyFileVersionAttribute("4.0.3.0")]
[assembly: AssemblyInformationalVersionAttribute("4.0.3.0")]
[assembly: AssemblyCopyrightAttribute("Copyright 2012 Chris Patterson, Dru Sellers, Travis Smith, All rights reserved.")]
namespace System {
internal static class AssemblyVersionInformation {
internal const string Version = "4.0.0.0";
internal const string InformationalVersion = "4.0.1.0";
internal const string InformationalVersion = "4.0.3.0";
}
}

0 comments on commit 2221949

Please sign in to comment.