ThisAssembly.Project 2.1.0-rc.1
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 the project file, such as:
<PropertyGroup>
<!-- Some arbitrary MSBuild property declared somewhere -->
<Foo>Bar</Foo>
</PropertyGroup>
<ItemGroup>
<!-- Opt-in to emitting that property value as a constant in ThisAssembly.Project -->
<ProjectProperty Include="Foo" Comment="This comment replaces the default comment :)" />
</ItemGroup>

Customizing the generated code
Set the $(ThisAssemblyNamespace) MSBuild property to set the namespace of the
generated ThisAssembly root class. Otherwise, it will be generated in the global namespace.
The generated root ThisAssembly class is partial and has no visibility modifier by default,
making it internal by default in C#.
You can set the $(ThisAssemblyVisibility) MSBuild property to public to make it public.
This will also change all constants to be static readonly properties instead.
Default:
partial class ThisAssembly
{
public partial class Constants
{
public const string Hello = "World";
}
}
In this case, the compiler will inline the constants directly into the consuming code at the call site, which is optimal for performance for the common usage of constants.
Public:
public partial class ThisAssembly
{
public partial class Constants
{
public static string Hello => "World";
}
}
This makes it possible for consuming code to remain unchanged and not require
a recompile when the the values of ThisAssembly are changed in a referenced assembly.
If you want to keep the properties as constants, you can instead extend the generated code by defining another partial that can modify its visibility as needed (or add new members).
// makes the generated class public
public partial ThisAssembly
{
// Nested classes are always public since the outer class
// already limits their visibility
partial class Constants
{
// add some custom constants
public const string MyConstant = "This isn't configurable via MSBuild";
// generated code will remain as constants
}
}
Open Source Maintenance Fee
To ensure the long-term sustainability of this project, users of this package who generate revenue must pay an Open Source Maintenance Fee. While the source code is freely available under the terms of the License, this package and other aspects of the project require adherence to the Maintenance Fee.
To pay the Maintenance Fee, become a Sponsor at the corresponding OSMF tier (starting at just $10!). A single fee covers all of Devlooped packages.
Sponsors
Showing the top 20 packages that depend on ThisAssembly.Project.
| Packages | Downloads |
|---|---|
|
ThisAssembly
Meta-package that includes all ThisAssembly.* packages.
|
4 |
|
ThisAssembly
Meta-package that includes all ThisAssembly.* packages.
> This project uses SponsorLink to attribute sponsor status (direct, indirect or implicit). For IDE usage, sponsor status is required.
> IDE-only warnings will be emitted after a grace period otherwise. Learn more at https://github.com/devlooped#sponsorlink.
|
3 |
|
ThisAssembly
Meta-package that includes all ThisAssembly.* packages.
|
2 |
|
ThisAssembly
Meta-package that includes all ThisAssembly.* packages. ** C# 9.0 ONLY **
|
2 |
|
ThisAssembly
Meta-package that includes all ThisAssembly.* packages.
> This project uses SponsorLink to attribute sponsor status (direct, indirect or implicit). For IDE usage, sponsor status is required.
> IDE-only warnings will be emitted after a grace period otherwise. Learn more at https://github.com/devlooped#sponsorlink.
|
2 |
|
ThisAssembly
Meta-package that includes all ThisAssembly.* packages. ** C# 9.0 ONLY **
Built from https://github.com/devlooped/ThisAssembly/tree/832f99169
|
2 |
.NET Standard 2.0
- ThisAssembly.Constants (>= 2.1.0-rc.1)
| Version | Downloads | Last updated |
|---|---|---|
| 2.1.2 | 2 | 06/16/2026 |
| 2.1.1 | 3 | 06/16/2026 |
| 2.1.0 | 3 | 06/16/2026 |
| 2.1.0-rc.1 | 3 | 06/16/2026 |
| 2.1.0-rc | 3 | 06/16/2026 |
| 2.1.0-beta | 3 | 06/16/2026 |
| 2.0.14 | 3 | 06/16/2026 |
| 2.0.13 | 3 | 06/16/2026 |
| 2.0.12 | 3 | 06/16/2026 |
| 2.0.11 | 3 | 06/16/2026 |
| 2.0.10 | 2 | 06/16/2026 |
| 2.0.9 | 3 | 06/16/2026 |
| 2.0.8 | 3 | 06/16/2026 |
| 1.4.3 | 3 | 06/16/2026 |
| 1.4.2 | 3 | 06/16/2026 |
| 1.4.1 | 3 | 06/16/2026 |
| 1.4.0 | 3 | 06/16/2026 |
| 1.1.3 | 3 | 06/16/2026 |
| 1.1.2 | 3 | 06/16/2026 |
| 1.1.1 | 3 | 06/16/2026 |
| 1.1.1-beta | 3 | 06/16/2026 |
| 1.1.0 | 3 | 06/16/2026 |
| 1.0.10 | 3 | 06/16/2026 |
| 1.0.9 | 3 | 06/16/2026 |
| 1.0.8 | 3 | 06/16/2026 |
| 1.0.7 | 3 | 06/16/2026 |
| 1.0.6 | 3 | 06/16/2026 |
| 1.0.5 | 3 | 06/16/2026 |
| 1.0.4 | 3 | 06/16/2026 |
| 1.0.3 | 3 | 06/16/2026 |
| 1.0.2 | 3 | 06/16/2026 |
| 1.0.1 | 3 | 06/16/2026 |
| 1.0.0 | 3 | 06/16/2026 |
| 1.0.0-rc.1 | 3 | 06/16/2026 |
| 1.0.0-rc | 3 | 06/16/2026 |
| 1.0.0-beta | 3 | 06/16/2026 |
| 1.0.0-alpha.3 | 3 | 06/16/2026 |
| 1.0.0-alpha.2 | 3 | 06/16/2026 |
| 1.0.0-alpha.1 | 3 | 06/16/2026 |
| 1.0.0-alpha | 3 | 06/16/2026 |
| 0.10.6 | 3 | 06/16/2026 |
| 0.10.5 | 3 | 06/16/2026 |
