Skip to content

Commit

Permalink
Remove mention of C# 9.0 from descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
kzu committed Jan 4, 2023
1 parent 8c7076c commit 2f9cb6a
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<PropertyGroup>
<PackageId>ThisAssembly.AssemblyInfo</PackageId>
<Description>** C# 9.0+ ONLY **
<Description>
This package generates a static `ThisAssembly.Info` class with public
constants exposing the following attribute values generated by default for SDK style projects:

Expand Down
2 changes: 1 addition & 1 deletion src/ThisAssembly.Constants/ThisAssembly.Constants.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<PropertyGroup>
<PackageId>ThisAssembly.Constants</PackageId>
<Description>** C# 9.0+ ONLY **
<Description>
This package generates a static `ThisAssembly.Constants` class with public
constants for each Constant MSBuild item in the project.

Expand Down
2 changes: 1 addition & 1 deletion src/ThisAssembly.Metadata/ThisAssembly.Metadata.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<PropertyGroup>
<PackageId>ThisAssembly.Metadata</PackageId>
<Description>** C# 9.0+ ONLY **
<Description>
This package generates a static `ThisAssembly.Metadata` class with public
constants exposing each `[System.Reflection.AssemblyMetadata(..)]` defined for the project,
such as when using .NET 5.0+ support for `AssemblyMetadata` MSBuild items.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,7 @@

<PropertyGroup>
<PackageId>ThisAssembly.Prerequisites</PackageId>
<Description>Ensures that referencing project satisfies the prerequisites for ThisAssembly, namely:

* MSBuild 16.8+: contains the Roslyn support for source generators
* C# 9.0 or greater language: it's the only language supported by Roslyn source generators at the moment.
</Description>
<Description>Ensures that referencing project is using a compatible Compiler API (Roslyn).</Description>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/ThisAssembly.Project/ThisAssembly.Project.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<PropertyGroup>
<PackageId>ThisAssembly.Project</PackageId>
<Description>** C# 9.0+ ONLY **
<Description>
This package generates a static `ThisAssembly.Project` class with public
constants exposing project properties that have been opted into this mechanism by adding
them as `ProjectProperty` MSBuild items in project file, such as:
Expand Down
1 change: 0 additions & 1 deletion src/ThisAssembly.Resources/ThisAssembly.Resources.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
<PropertyGroup>
<PackageId>ThisAssembly.Resources</PackageId>
<Description>
** C# 9.0+ ONLY **
This package generates a static `ThisAssembly.Resources` class with public
properties exposing `string` and `Stream` shortcuts to access embedded resources.
</Description>
Expand Down
2 changes: 1 addition & 1 deletion src/ThisAssembly.Strings/ThisAssembly.Strings.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<PropertyGroup>
<PackageId>ThisAssembly.Strings</PackageId>
<Description>** C# 9.0+ ONLY **
<Description>
This package generates a static `ThisAssembly.Strings` class with public
constants exposing string resources in .resx files or methods with the right number of
parameters for strings that use formatting parameters.
Expand Down
4 changes: 2 additions & 2 deletions src/ThisAssembly/ThisAssembly.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<PropertyGroup>
<PackageId>ThisAssembly</PackageId>
<Description>Meta-package that includes all ThisAssembly.* packages. ** C# 9.0 ONLY **</Description>
<Description>Meta-package that includes all ThisAssembly.* packages.</Description>
</PropertyGroup>

<ItemGroup>
Expand All @@ -26,11 +26,11 @@

<ItemGroup>
<ProjectReference Include="..\ThisAssembly.AssemblyInfo\ThisAssembly.AssemblyInfo.csproj" PrivateAssets="none" />
<ProjectReference Include="..\ThisAssembly.Constants\ThisAssembly.Constants.csproj" PrivateAssets="none" />
<ProjectReference Include="..\ThisAssembly.Metadata\ThisAssembly.Metadata.csproj" PrivateAssets="none" />
<ProjectReference Include="..\ThisAssembly.Project\ThisAssembly.Project.csproj" PrivateAssets="none" />
<ProjectReference Include="..\ThisAssembly.Resources\ThisAssembly.Resources.csproj" PrivateAssets="none" />
<ProjectReference Include="..\ThisAssembly.Strings\ThisAssembly.Strings.csproj" PrivateAssets="none" />
<ProjectReference Include="..\ThisAssembly.Constants\ThisAssembly.Constants.csproj" PrivateAssets="none" />
</ItemGroup>

</Project>

0 comments on commit 2f9cb6a

Please sign in to comment.