Skip to content

Commit 3096ff2

Browse files
authored
Add RuntimeIdentifer(s) properties to project constants
These are typically useful in addition to TFM.
1 parent a4785b0 commit 3096ff2

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

src/ThisAssembly.Project/ThisAssembly.Project.props

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
<ProjectProperty Include="TargetFrameworkIdentifier" />
88
<ProjectProperty Include="TargetFrameworkMoniker" />
99
<ProjectProperty Include="TargetFrameworkVersion" />
10+
11+
<ProjectProperty Include="RuntimeIdentifier" />
12+
<ProjectProperty Include="RuntimeIdentifiers" />
1013
</ItemGroup>
1114

1215
</Project>

src/ThisAssembly.Tests/Tests.cs

+5
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,11 @@ public void CanUseHierarchicalMetadata()
124124
public void CanUseProjectProperty()
125125
=> Assert.Equal("Bar", ThisAssembly.Project.Foo);
126126

127+
/// <summary />
128+
[Fact]
129+
public void CanUseProjectProperty2()
130+
=> Assert.NotEmpty(ThisAssembly.Project.RuntimeIdentifiers);
131+
127132
/// <summary />
128133
[Fact]
129134
public void CanUseStringsNamedArguments()

src/ThisAssembly.Tests/ThisAssembly.Tests.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
<ProjectFileComment>$(ProjectFile)</ProjectFileComment>
2727
<GenerateDocumentationFile>true</GenerateDocumentationFile>
2828
<WarningsAsErrors>true</WarningsAsErrors>
29+
<RuntimeIdentifiers>win-x64;linux-x86</RuntimeIdentifiers>
2930
</PropertyGroup>
3031

3132
<Import Project="..\*\ThisAssembly*.props" />

0 commit comments

Comments
 (0)