Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions MakeInterface.Generator/MakeInterface.Generator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
</PropertyGroup>
<PropertyGroup>
<OutputType>library</OutputType>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>MakeInterface.Generator</PackageId>
<Version>1.0.0</Version>
<Version>1.0.0</Version>
<Authors>Frederik Tegnander</Authors>
<Company>COWI</Company>
<PackageTags>Interfaces;SourceGenerator;MakeInterface</PackageTags>
Expand Down
2 changes: 1 addition & 1 deletion MakeInterface.Tests/InterfaceGeneratorTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ private void Test7(string _) { }
}
"""; return TestHelper.Verify(source);
}

[Fact]
public Task RelayCommandWithCancellationToken()
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
//HintName: ITest.g.cs
using System.Threading;
using System.Threading.Tasks;

// <auto-generated/>
#pragma warning disable
#nullable enable
using System.Threading;
using System.Threading.Tasks;

namespace MakeInterface.Tests
{
public partial interface IViewModel
Expand Down
Loading