mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 20:58: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);
|
||||
});
|
||||
|
||||
Task("Test").IsDependentOn("Build").Does(() => {
|
||||
DotNetCoreTest("Tests/Tests.csproj", new DotNetCoreTestSettings {
|
||||
NoWorkingDirectory = true,
|
||||
Configuration = config,
|
||||
});
|
||||
});
|
||||
|
||||
Task("Pack").IsDependentOn("Test").Does(() => {
|
||||
Task("Pack").IsDependentOn("Build").Does(() => {
|
||||
var settings = new DotNetCorePackSettings {
|
||||
Configuration = config,
|
||||
ArgumentCustomization = args => args.Append($"/p:Version={version}")
|
||||
|
|
Loading…
Reference in a new issue