Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Purview.SourceGeneratorFramework
# SourceGenerator Framework

[![NuGet version](https://img.shields.io/nuget/v/Purview.SourceGeneratorFramework.svg)](https://www.nuget.org/packages/Purview.SourceGeneratorFramework)
[![Release](https://github.com/purview-dev/sourcegenerator-framework/actions/workflows/release.yml/badge.svg)](https://github.com/purview-dev/sourcegenerator-framework/actions/workflows/release.yml)
Expand Down
Binary file added assets/images/purview-banner-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/purview-banner-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
60 changes: 60 additions & 0 deletions assets/images/purview-banner.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/purview-logo-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/purview-logo-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/images/purview-logo.png
Binary file not shown.
27 changes: 27 additions & 0 deletions assets/images/purview-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/wiki/Packaging.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ package to contain, at minimum:
- `analyzers/dotnet/cs/` versions of the framework, generators, analyzers, code fixers, and shared
assemblies;
- `build/Purview.SourceGeneratorFramework.props` and `build/Purview.SourceGeneratorFramework.targets`;
- `README.md`, `LICENSE.md`, and `purview-logo.png`.
- `README.md`, `LICENSE.md`, and `purview-logo-light.png`.

PDBs are delivered only through the `.snupkg`; `*.pdb` files are forbidden inside the `.nupkg`.

Expand Down
2 changes: 1 addition & 1 deletion docs/wiki/Release-Flow.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ and cleaning (`just clean`, `just scrub`).
`purview.sourcegeneratorframework` must contain the `lib/netstandard2.0/` framework assembly and
shared assembly, the `analyzers/dotnet/cs/` generator/analyzer/code-fixer/shared assemblies, the
`build/Purview.SourceGeneratorFramework.props` and `.targets` files, `README.md`, `LICENSE.md`, and
`purview-logo.png`. See [Packaging.md](Packaging.md) for details.
`purview-logo-light.png`. See [Packaging.md](Packaging.md) for details.
- `PackValidation.ForbiddenContent` — `*.pdb` files are forbidden inside the `.nupkg` (PDBs are
delivered only through the `.snupkg`).

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "purview-sourcegenerator-framework",
"version": "1.0.0-prerelease.43",
"version": "1.0.0-prerelease.44",
"license": "MIT",
"author": {
"name": "Kieron Lanning",
Expand Down
6 changes: 3 additions & 3 deletions purview-build.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,23 @@
"build/Purview.SourceGeneratorFramework.targets",
"README.md",
"LICENSE.md",
"purview-logo.png"
"purview-logo-light.png"
],
"purview.sourcegeneratorframework.testing": [
"lib/netstandard2.0/Purview.SourceGeneratorFramework.Testing.dll",
"lib/netstandard2.0/Purview.SourceGeneratorFramework.Shared.dll",
"build/Purview.SourceGeneratorFramework.Testing.props",
"README.md",
"LICENSE.md",
"purview-logo.png"
"purview-logo-light.png"
],
"purview.sourcegeneratorframework.testing.tunit": [
"lib/netstandard2.0/Purview.SourceGeneratorFramework.Testing.TUnit.dll",
"lib/netstandard2.0/Purview.SourceGeneratorFramework.Shared.dll",
"build/Purview.SourceGeneratorFramework.Testing.TUnit.props",
"README.md",
"LICENSE.md",
"purview-logo.png"
"purview-logo-light.png"
]
},
"ForbiddenContent": {
Expand Down
4 changes: 2 additions & 2 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@
<RepositoryUrl>https://github.com/purview-dev/sourcegenerator-framework</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageIcon>purview-logo.png</PackageIcon>
<PackageIcon>purview-logo-light.png</PackageIcon>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
</PropertyGroup>

<ItemGroup Label="NuGet package assets" Condition="'$(IsPackable)' == 'true'">
<None Include="..\..\..\LICENSE.md" Link="Sdk\LICENSE.md" />
<None Include="..\..\..\assets/images/purview-logo.png" Link="Sdk\purview-logo.png" />
<None Include="..\..\..\assets/images/purview-logo-light.png" Link="Sdk\purview-logo-light.png" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<PackageProjectUrl>$(PurviewProjectUrl)</PackageProjectUrl>
<RepositoryUrl>https://github.com/purview-dev/sourcegenerator-framework</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>purview-logo.png</PackageIcon>
<PackageIcon>purview-logo-light.png</PackageIcon>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/src/SourceGeneratorFramework/Sdk/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Purview.SourceGeneratorFramework
# SourceGenerator Framework

Core helpers, models, and MSBuild integration for writing incremental C# source generators with Roslyn.

Expand Down
Loading