Skip to content

Commit

Permalink
github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
beakona committed Dec 3, 2023
1 parent 1e69a1c commit d285560
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
VERSION="${VERSION//v}"
dotnet pack -c Release -p:PackageVersion=$VERSION BeaKona.AutoInterfaceGenerator
- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: nupkg
path: |
Expand Down
2 changes: 1 addition & 1 deletion AutoInterfaceSample/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ interface IPrintableComplex
void PrintComplex();
}

public class SimplePrinter //: IPrintableComplex
public class SimplePrinter // : IPrintableComplex
{
public void Print() { Console.WriteLine("OK"); }
public void PrintComplex() { Console.WriteLine("OKC"); }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<RepositoryUrl>https://github.com/beakona/AutoInterface</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<TargetsForTfmSpecificContentInPackage>$(TargetsForTfmSpecificContentInPackage);_AddAnalyzersToOutput</TargetsForTfmSpecificContentInPackage>
<Version>1.0.33</Version>
<Version>1.0.34</Version>
<IsRoslynComponent>true</IsRoslynComponent>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
</PropertyGroup>
Expand Down

0 comments on commit d285560

Please sign in to comment.