Skip to content

Commit

Permalink
Add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
hadashiA committed Jan 18, 2024
1 parent 94c91b9 commit eb85aca
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/NuGetForUnity/Editor/NugetAssetPostprocessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,15 @@ public class NugetAssetPostprocessor : AssetPostprocessor
/// </summary>
private const string AnalyzersFolderName = "analyzers";

private static readonly string AnalyzersRoslynVersionsFolderName = Path.Join("analyzers", "dotnet");
private static readonly string AnalyzersRoslynVersionSubFolderPrefix = Path.Join("analyzers", "dotnet", "roslyn");
/// <summary>
/// Folder of root before the version of analyzers was split.
/// </summary>
private static readonly string AnalyzersRoslynVersionsFolderName = Path.Join(AnalyzersFolderName, "dotnet");

/// <summary>
/// Prefix for roslyn versioning of dll asset path.
/// </summary>
private static readonly string AnalyzersRoslynVersionSubFolderPrefix = Path.Join(AnalyzersRoslynVersionsFolderName, "roslyn");

/// <summary>
/// Used to mark an asset as already processed by this class.
Expand Down

0 comments on commit eb85aca

Please sign in to comment.