huh
This commit is contained in:
parent
b9599c5fa3
commit
db81426fd5
3 changed files with 8 additions and 9 deletions
|
@ -4,7 +4,7 @@ public class MinimeBuildTask : Microsoft.Build.Utilities.Task
|
|||
{
|
||||
public override bool Execute()
|
||||
{
|
||||
System.Threading.Tasks.Task.Run(async () =>
|
||||
Task.Run(async () =>
|
||||
{
|
||||
RuntimeManager runtime = new(RuntimeOptions.Default);
|
||||
await runtime.Execute(this.BuildEngine);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<UsingTask TaskName="Nyanbyte.Minime.MinimeBuildTask"
|
||||
AssemblyFile="./bin/Debug/net7.0/Nyanbyte.Minime.dll" />
|
||||
<UsingTask TaskName="Nyanbyte.Minime.MinimeBuildTask" AssemblyFile="./bin/Debug/net7.0/Nyanbyte.Minime.dll" />
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
|
@ -10,8 +9,8 @@
|
|||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Build.Framework" Version="17.7.2" PrivateAssets="all" />
|
||||
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="17.7.2" PrivateAssets="all" />
|
||||
<PackageReference Include="Microsoft.Build.Framework" Version="17.8.3" PrivateAssets="all" />
|
||||
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="17.8.3" PrivateAssets="all" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="Minime" AfterTargets="Build">
|
||||
|
|
|
@ -10,13 +10,13 @@
|
|||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.1" />
|
||||
<PackageReference Include="xunit" Version="2.4.2" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
|
||||
<PackageReference Include="xunit" Version="2.6.4" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="coverlet.collector" Version="3.2.0">
|
||||
<PackageReference Include="coverlet.collector" Version="6.0.0">
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
</PackageReference>
|
||||
|
|
Loading…
Reference in a new issue