├── .editorconfig ├── .github └── workflows │ ├── ci.yml │ ├── codeql-analysis.yml │ └── release.yml ├── .gitignore ├── .vscode ├── settings.json └── tasks.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Sigourney.Shipping.slnf ├── Sigourney.sln ├── global.json ├── pack.ps1 ├── src ├── Sigourney.Build │ ├── Sigourney.Build.csproj │ ├── buildMultiTargeting │ │ └── Sigourney.Build.targets │ └── buildTransitive │ │ ├── Sigourney.Build.targets │ │ ├── Sigourney.Build.targets.buildschema.json │ │ └── Sigourney.PublishMode.targets ├── Sigourney │ ├── AssemblyMarker.cs │ ├── AssemblyReference.cs │ ├── MSBuildWeaver.cs │ ├── Sigourney.csproj │ ├── Weaver.cs │ └── WeaverConfig.cs └── nuget.props ├── test.ps1 └── tests ├── Sigourney.TestWeaver1 ├── README.md ├── Sigourney.TestWeaver1.csproj ├── TestWeaver1.cs └── build │ ├── Sigourney.TestWeaver1.props │ └── Sigourney.TestWeaver1.targets ├── Sigourney.TestWeaver2 ├── Sigourney.TestWeaver2.csproj ├── TestWeaver2.cs └── build │ ├── Sigourney.TestWeaver2.props │ └── Sigourney.TestWeaver2.targets ├── Sigourney.Tests ├── Program.cs ├── Sigourney.Tests.csproj └── Sigourney.Tests.snk ├── buildtest-empty └── buildtest-empty.csproj ├── nuget.config └── test.proj /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/README.md -------------------------------------------------------------------------------- /Sigourney.Shipping.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/Sigourney.Shipping.slnf -------------------------------------------------------------------------------- /Sigourney.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/Sigourney.sln -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/global.json -------------------------------------------------------------------------------- /pack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/pack.ps1 -------------------------------------------------------------------------------- /src/Sigourney.Build/Sigourney.Build.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/src/Sigourney.Build/Sigourney.Build.csproj -------------------------------------------------------------------------------- /src/Sigourney.Build/buildMultiTargeting/Sigourney.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/src/Sigourney.Build/buildMultiTargeting/Sigourney.Build.targets -------------------------------------------------------------------------------- /src/Sigourney.Build/buildTransitive/Sigourney.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/src/Sigourney.Build/buildTransitive/Sigourney.Build.targets -------------------------------------------------------------------------------- /src/Sigourney.Build/buildTransitive/Sigourney.Build.targets.buildschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/src/Sigourney.Build/buildTransitive/Sigourney.Build.targets.buildschema.json -------------------------------------------------------------------------------- /src/Sigourney.Build/buildTransitive/Sigourney.PublishMode.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/src/Sigourney.Build/buildTransitive/Sigourney.PublishMode.targets -------------------------------------------------------------------------------- /src/Sigourney/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/src/Sigourney/AssemblyMarker.cs -------------------------------------------------------------------------------- /src/Sigourney/AssemblyReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/src/Sigourney/AssemblyReference.cs -------------------------------------------------------------------------------- /src/Sigourney/MSBuildWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/src/Sigourney/MSBuildWeaver.cs -------------------------------------------------------------------------------- /src/Sigourney/Sigourney.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/src/Sigourney/Sigourney.csproj -------------------------------------------------------------------------------- /src/Sigourney/Weaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/src/Sigourney/Weaver.cs -------------------------------------------------------------------------------- /src/Sigourney/WeaverConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/src/Sigourney/WeaverConfig.cs -------------------------------------------------------------------------------- /src/nuget.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/src/nuget.props -------------------------------------------------------------------------------- /test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/test.ps1 -------------------------------------------------------------------------------- /tests/Sigourney.TestWeaver1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/tests/Sigourney.TestWeaver1/README.md -------------------------------------------------------------------------------- /tests/Sigourney.TestWeaver1/Sigourney.TestWeaver1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/tests/Sigourney.TestWeaver1/Sigourney.TestWeaver1.csproj -------------------------------------------------------------------------------- /tests/Sigourney.TestWeaver1/TestWeaver1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/tests/Sigourney.TestWeaver1/TestWeaver1.cs -------------------------------------------------------------------------------- /tests/Sigourney.TestWeaver1/build/Sigourney.TestWeaver1.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/tests/Sigourney.TestWeaver1/build/Sigourney.TestWeaver1.props -------------------------------------------------------------------------------- /tests/Sigourney.TestWeaver1/build/Sigourney.TestWeaver1.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/tests/Sigourney.TestWeaver1/build/Sigourney.TestWeaver1.targets -------------------------------------------------------------------------------- /tests/Sigourney.TestWeaver2/Sigourney.TestWeaver2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/tests/Sigourney.TestWeaver2/Sigourney.TestWeaver2.csproj -------------------------------------------------------------------------------- /tests/Sigourney.TestWeaver2/TestWeaver2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/tests/Sigourney.TestWeaver2/TestWeaver2.cs -------------------------------------------------------------------------------- /tests/Sigourney.TestWeaver2/build/Sigourney.TestWeaver2.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/tests/Sigourney.TestWeaver2/build/Sigourney.TestWeaver2.props -------------------------------------------------------------------------------- /tests/Sigourney.TestWeaver2/build/Sigourney.TestWeaver2.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/tests/Sigourney.TestWeaver2/build/Sigourney.TestWeaver2.targets -------------------------------------------------------------------------------- /tests/Sigourney.Tests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/tests/Sigourney.Tests/Program.cs -------------------------------------------------------------------------------- /tests/Sigourney.Tests/Sigourney.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/tests/Sigourney.Tests/Sigourney.Tests.csproj -------------------------------------------------------------------------------- /tests/Sigourney.Tests/Sigourney.Tests.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/tests/Sigourney.Tests/Sigourney.Tests.snk -------------------------------------------------------------------------------- /tests/buildtest-empty/buildtest-empty.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/tests/buildtest-empty/buildtest-empty.csproj -------------------------------------------------------------------------------- /tests/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/tests/nuget.config -------------------------------------------------------------------------------- /tests/test.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teo-tsirpanis/Sigourney/HEAD/tests/test.proj --------------------------------------------------------------------------------