31 lines
1.3 KiB
XML
31 lines
1.3 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<!--
|
|
These version strings are stamped into the template nupkg packages
|
|
when the template projects are packed. Plus these dependency versions
|
|
are used if you run the template projects directly from source.
|
|
|
|
If you add a new entry here, be sure to add a corresponding <Substitution>
|
|
item into ./src/Directory.Build.targets, otherwise your value won't be
|
|
stamped into the built template nupkg files.
|
|
|
|
Entries whose values are taken from @(PackageReference->...) are using
|
|
whatever version is present in the latest package lineup. These dynamic
|
|
values can be replaced by hardcoded values (e.g., '2.1.0') when we
|
|
branch for a release.
|
|
-->
|
|
<TemplateDep_Coherence_2_0>2.0.0</TemplateDep_Coherence_2_0>
|
|
<TemplateDep_Coherence_2_1>@(PackageReference->WithMetadataValue('Identity', 'Microsoft.AspNetCore')->Metadata('Version'))</TemplateDep_Coherence_2_1>
|
|
<TemplateDep_RuntimeFramework_2_1>2.1.0-preview1-26751</TemplateDep_RuntimeFramework_2_1>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!--
|
|
These references are here only so that KoreBuild will locate the applicable
|
|
version in the current lineup and we can then access those versions in the
|
|
code above.
|
|
-->
|
|
<PackageReference Include="Microsoft.AspNetCore" />
|
|
</ItemGroup>
|
|
</Project>
|