mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-25 22:18:34 +01:00
Compare commits
2 commits
d94e882c02
...
e60d3591ff
Author | SHA1 | Date | |
---|---|---|---|
e60d3591ff | |||
a274517861 |
3 changed files with 7 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<VSTestLogger>nunit</VSTestLogger>
|
||||
<RootNamespace>Tests</RootNamespace>
|
||||
<DefineConstants>$(DefineConstants);FNA</DefineConstants>
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<VSTestLogger>nunit</VSTestLogger>
|
||||
</PropertyGroup>
|
||||
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\MLEM.Startup\MLEM.Startup.csproj" />
|
||||
<ProjectReference Include="..\MLEM.Data\MLEM.Data.csproj" />
|
||||
<ProjectReference Include="..\MLEM.Ui\MLEM.Ui.csproj" />
|
||||
<ProjectReference Include="..\MLEM\MLEM.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.0.1641" />
|
||||
<PackageReference Include="coverlet.collector" Version="3.1.2">
|
||||
|
@ -23,7 +23,7 @@
|
|||
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
|
||||
<PackageReference Include="NunitXml.TestLogger" Version="3.0.117" />
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
<ItemGroup>
|
||||
<Content Include="Content/**">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
|
|
|
@ -16,7 +16,7 @@ Task("Prepare").Does(() => {
|
|||
version += "-" + buildNum;
|
||||
}
|
||||
|
||||
DeleteFiles("**/*.nupkg");
|
||||
DeleteFiles("**/MLEM*.nupkg");
|
||||
});
|
||||
|
||||
Task("Build").IsDependentOn("Prepare").Does(() =>{
|
||||
|
@ -62,7 +62,7 @@ Task("Push").WithCriteria(branch == "main" || branch == "release").IsDependentOn
|
|||
};
|
||||
}
|
||||
settings.SkipDuplicate = true;
|
||||
NuGetPush(GetFiles("**/*.nupkg"), settings);
|
||||
NuGetPush(GetFiles("**/MLEM*.nupkg"), settings);
|
||||
});
|
||||
|
||||
Task("Document").Does(() => {
|
||||
|
|
Loading…
Reference in a new issue