Skip to content

Commit

Permalink
Fixed cake build
Browse files Browse the repository at this point in the history
  • Loading branch information
meberl committed Jul 3, 2019
1 parent 503d11a commit 3a77b47
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 5 deletions.
38 changes: 38 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
relre:Debug
relre:svn
syntax: glob
*.orig
*.suo
*.ldb
*.user
*.sdps
*.dll
*.pdb
*.exe
**/obj/*
*.obj
*.tlog
*.db
*.pxa
*.trx
*.tmp_proj
*.userprefs
*StyleCop.Cache
*Tests.mdf
*.psess
*.vsp
*.ldf
*.rej
*/UpgradeLog.htm
bin/*
Build/*
packages/*
api/*
TestResult.xml
tools/*
doc/docfx_project/_site/**
tests/cilg-integration/build/*
tests/nuget-integration/work/*
**/.vs/**
tests/nuget-integration/blueprint/net35/packages.config
_site/**
4 changes: 2 additions & 2 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ PathStruct Paths = new PathStruct{
void Clean(FilePath solution)
{
Section("Clean and remove obj");
DotNetBuild(solution, settings => settings
MSBuild(solution, settings => settings
.SetConfiguration(configuration)
.WithTarget("Clean")
.SetVerbosity(Verbosity.Quiet));
Expand Down Expand Up @@ -101,7 +101,7 @@ Task("Pack")
.IsDependentOn("Build")
.Does(() => {

DotNetBuild("./Trinity/Trinity.csproj", settings => settings
MSBuild("./Trinity/Trinity.csproj", settings => settings
.SetConfiguration(configuration)
.WithTarget("pack")
.SetVerbosity(Verbosity.Quiet));
Expand Down
2 changes: 1 addition & 1 deletion tests/cilg-integration/net35/net35.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="Semiodesk.Trinity">
<HintPath>..\..\..\Build\Net35\Release\Semiodesk.Trinity.dll</HintPath>
<HintPath>..\..\..\Build\Release\net35\Semiodesk.Trinity.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
2 changes: 1 addition & 1 deletion tests/cilg-integration/net40/Net40.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="Semiodesk.Trinity">
<HintPath>..\..\..\Build\Net40\Release\Semiodesk.Trinity.dll</HintPath>
<HintPath>..\..\..\Build\Release\net40\Semiodesk.Trinity.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
2 changes: 1 addition & 1 deletion tests/cilg-integration/net461/net461.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="Semiodesk.Trinity">
<HintPath>..\..\..\Build\Net40\Release\Semiodesk.Trinity.dll</HintPath>
<HintPath>..\..\..\Build\Release\net40\Semiodesk.Trinity.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down

0 comments on commit 3a77b47

Please sign in to comment.