├── .github ├── dependabot.yml └── workflows │ └── dotnet-build.yml ├── .gitignore ├── Build.proj ├── Directory.Build.props ├── Icon.png ├── LICENSE ├── README.md ├── global.json ├── samples ├── Directory.Build.props ├── NuGet.config ├── analyzer │ ├── Program.cs │ └── analyzer.csproj ├── lib │ ├── Class1.cs │ └── lib.csproj └── samples.proj └── src ├── Sdk ├── Sdk.props └── Sdk.targets └── ViHo.PackAsAnalyzer.proj /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorHofer/PackAsAnalyzer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorHofer/PackAsAnalyzer/HEAD/.github/workflows/dotnet-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorHofer/PackAsAnalyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /Build.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorHofer/PackAsAnalyzer/HEAD/Build.proj -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorHofer/PackAsAnalyzer/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorHofer/PackAsAnalyzer/HEAD/Icon.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorHofer/PackAsAnalyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorHofer/PackAsAnalyzer/HEAD/README.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorHofer/PackAsAnalyzer/HEAD/global.json -------------------------------------------------------------------------------- /samples/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorHofer/PackAsAnalyzer/HEAD/samples/Directory.Build.props -------------------------------------------------------------------------------- /samples/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorHofer/PackAsAnalyzer/HEAD/samples/NuGet.config -------------------------------------------------------------------------------- /samples/analyzer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorHofer/PackAsAnalyzer/HEAD/samples/analyzer/Program.cs -------------------------------------------------------------------------------- /samples/analyzer/analyzer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorHofer/PackAsAnalyzer/HEAD/samples/analyzer/analyzer.csproj -------------------------------------------------------------------------------- /samples/lib/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorHofer/PackAsAnalyzer/HEAD/samples/lib/Class1.cs -------------------------------------------------------------------------------- /samples/lib/lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorHofer/PackAsAnalyzer/HEAD/samples/lib/lib.csproj -------------------------------------------------------------------------------- /samples/samples.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorHofer/PackAsAnalyzer/HEAD/samples/samples.proj -------------------------------------------------------------------------------- /src/Sdk/Sdk.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorHofer/PackAsAnalyzer/HEAD/src/Sdk/Sdk.props -------------------------------------------------------------------------------- /src/Sdk/Sdk.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorHofer/PackAsAnalyzer/HEAD/src/Sdk/Sdk.targets -------------------------------------------------------------------------------- /src/ViHo.PackAsAnalyzer.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorHofer/PackAsAnalyzer/HEAD/src/ViHo.PackAsAnalyzer.proj --------------------------------------------------------------------------------