|
3 | 3 | <PropertyGroup> |
4 | 4 | <NeutralLanguage>en</NeutralLanguage> |
5 | 5 | <Authors>Brian Lagunas;Dan Siegel</Authors> |
| 6 | + <Company>Prism Software, LLC</Company> |
| 7 | + <Copyright Condition="'$(Copyright)'==''">Copyright (C) 2015-$([System.DateTime]::Now.ToString(`yyyy`)) Prism Software, LLC - all rights reserved</Copyright> |
6 | 8 | <PackageProjectUrl>https://github.com/PrismLibrary/Prism</PackageProjectUrl> |
7 | 9 | <PackageLicenseFile>LICENSE</PackageLicenseFile> |
8 | 10 | <PackageIcon>prism-logo.png</PackageIcon> |
|
152 | 154 | CopyToOutputDirectory="PreserveNewest" /> |
153 | 155 | </ItemGroup> |
154 | 156 |
|
155 | | - <ItemGroup Condition=" $(UseMaui) != 'true' "> |
156 | | - <PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies"> |
157 | | - <PrivateAssets>all</PrivateAssets> |
158 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> |
159 | | - </PackageReference> |
160 | | - </ItemGroup> |
161 | | - |
162 | | - <ItemGroup Condition=" $(DISABLE_GITVERSIONING) != 'true' "> |
163 | | - <PackageReference Include="Nerdbank.GitVersioning" |
164 | | - Condition=" !$(MSBuildProjectDirectory.Contains('e2e')) "> |
165 | | - <PrivateAssets>all</PrivateAssets> |
166 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> |
167 | | - </PackageReference> |
168 | | - </ItemGroup> |
169 | | - |
170 | | - <ItemGroup Condition=" $(IsPackable) "> |
171 | | - <PackageReference Include="Microsoft.SourceLink.GitHub"> |
172 | | - <PrivateAssets>all</PrivateAssets> |
173 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> |
174 | | - </PackageReference> |
| 157 | + <!-- Versions: Directory.Packages.props (Central Package Management). PrivateAssets=all is implicit. --> |
| 158 | + <ItemGroup> |
| 159 | + <GlobalPackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" |
| 160 | + Condition=" $(UseMaui) != 'true' " /> |
| 161 | + <GlobalPackageReference Include="Nerdbank.GitVersioning" |
| 162 | + Condition=" $(DISABLE_GITVERSIONING) != 'true' AND !$(MSBuildProjectDirectory.Contains('e2e')) " /> |
| 163 | + <GlobalPackageReference Include="Microsoft.SourceLink.GitHub" |
| 164 | + Condition=" $(IsPackable) " /> |
| 165 | + <GlobalPackageReference Include="Microsoft.Sbom.Targets" |
| 166 | + Condition=" $(IsPackable) " /> |
175 | 167 | </ItemGroup> |
176 | 168 |
|
177 | 169 | </Project> |
0 commit comments