1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-28 11:03:37 +02:00

Removed test task

This commit is contained in:
Ellpeck 2020-07-31 18:51:39 +02:00
parent fa3ddbc74e
commit 5d19b8f674

View file

@ -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}")