-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from dills122/speedImprovements
Speed improvements
- Loading branch information
Showing
7 changed files
with
165 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp2.0</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="FlubuCore" Version="2.12.0" /> | ||
</ItemGroup> | ||
|
||
|
||
<ItemGroup> | ||
<DotNetCliToolReference Include="dotnet-flubu" Version="1.7.0" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
using FlubuCore.Context; | ||
using FlubuCore.Scripting; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Build | ||
{ | ||
class BuildScript : DefaultBuildScript | ||
{ | ||
protected override void ConfigureBuildProperties(IBuildPropertiesContext context) | ||
{ | ||
context.Properties.Set(BuildProps.CompanyName, "Flubu"); | ||
context.Properties.Set(BuildProps.CompanyCopyright, "Copyright (C) 2010-2016 Flubu"); | ||
context.Properties.Set(BuildProps.ProductId, "FlubuCoreExample"); | ||
context.Properties.Set(BuildProps.ProductName, "FlubuCoreExample"); | ||
} | ||
protected override void ConfigureTargets(ITaskContext session) | ||
{ | ||
var compile = session.CreateTarget("compile") | ||
.SetDescription("Compiles the solution.") | ||
.AddCoreTask(x => x.Build("..\\ShamWow.sln")); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.