mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-25 22:18:34 +01:00
Compare commits
No commits in common. "e60d3591fff634c7776b2b2f8e7c092163988b56" and "d94e882c022db154e567a88e1395dea8262cb7cb" have entirely different histories.
e60d3591ff
...
d94e882c02
3 changed files with 7 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
<VSTestLogger>nunit</VSTestLogger>
|
||||
<RootNamespace>Tests</RootNamespace>
|
||||
<DefineConstants>$(DefineConstants);FNA</DefineConstants>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
<VSTestLogger>nunit</VSTestLogger>
|
||||
</PropertyGroup>
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ Task("Prepare").Does(() => {
|
|||
version += "-" + buildNum;
|
||||
}
|
||||
|
||||
DeleteFiles("**/MLEM*.nupkg");
|
||||
DeleteFiles("**/*.nupkg");
|
||||
});
|
||||
|
||||
Task("Build").IsDependentOn("Prepare").Does(() =>{
|
||||
|
@ -62,7 +62,7 @@ Task("Push").WithCriteria(branch == "main" || branch == "release").IsDependentOn
|
|||
};
|
||||
}
|
||||
settings.SkipDuplicate = true;
|
||||
NuGetPush(GetFiles("**/MLEM*.nupkg"), settings);
|
||||
NuGetPush(GetFiles("**/*.nupkg"), settings);
|
||||
});
|
||||
|
||||
Task("Document").Does(() => {
|
||||
|
|
Loading…
Reference in a new issue