-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
435 additions
and
54 deletions.
There are no files selected for viewing
Binary file added
BIN
+18.1 MB
lib/MMHOOK_Microsoft.CodeAnalysis.CSharp/MMHOOK_Microsoft.CodeAnalysis.CSharp.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
Mono.Cecil | ||
version 0.11.4.0 | ||
framework netstandard2.0 | ||
|
||
MonoMod.RuntimeDetour | ||
version 22.07.31.01 | ||
framework netstandard2.0 | ||
framework netstandard2.0 | ||
|
||
MMHOOK_Microsoft.CodeAnalysis.CSharp | ||
version 4.4.0 | ||
framework todo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
src/CleElum.Bootstrapper.Analyzer.Tests/UnrestrictedNameOf/UnrestrictedNameOfTests.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
namespace CleElum.Bootstrapper.Analyzer.Tests.UnrestrictedNameOf; | ||
|
||
[TestFixture] | ||
public static class UnrestrictedNameOfTests { | ||
private class A { | ||
private int B; | ||
} | ||
|
||
[TestCase(nameof(A), "A")] | ||
//[TestCase(nameof(A.B), "B")] | ||
public static void TestNameOf(string nameOf, string actual) { | ||
Assert.Equals(nameOf, actual); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
global using static CleElum.Bootstrapper.Analyzer.Constants; | ||
global using static CleElum.Bootstrapper.Analyzer.Constants; | ||
global using static Microsoft.CodeAnalysis.WellKnownDiagnosticTags; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net472</TargetFramework> | ||
<LangVersion>latest</LangVersion> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="MonoMod.RuntimeDetour.HookGen" Version="22.7.31.1"/> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.