mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-26 14:38:34 +01:00
Removed test task
This commit is contained in:
parent
fa3ddbc74e
commit
5d19b8f674
1 changed files with 1 additions and 8 deletions
|
@ -30,14 +30,7 @@ Task("Build").IsDependentOn("Prepare").Does(() =>{
|
||||||
DotNetCoreBuild("Demos/Demos.csproj", settings);
|
DotNetCoreBuild("Demos/Demos.csproj", settings);
|
||||||
});
|
});
|
||||||
|
|
||||||
Task("Test").IsDependentOn("Build").Does(() => {
|
Task("Pack").IsDependentOn("Build").Does(() => {
|
||||||
DotNetCoreTest("Tests/Tests.csproj", new DotNetCoreTestSettings {
|
|
||||||
NoWorkingDirectory = true,
|
|
||||||
Configuration = config,
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
Task("Pack").IsDependentOn("Test").Does(() => {
|
|
||||||
var settings = new DotNetCorePackSettings {
|
var settings = new DotNetCorePackSettings {
|
||||||
Configuration = config,
|
Configuration = config,
|
||||||
ArgumentCustomization = args => args.Append($"/p:Version={version}")
|
ArgumentCustomization = args => args.Append($"/p:Version={version}")
|
||||||
|
|
Loading…
Reference in a new issue