| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <Project>
- <ItemDefinitionGroup>
- <Repository>
- <Build>true</Build>
- <!--
- Specifies the ruleset used to determine if a repo should build in a patch update, or not.
- The default is ProductChangesOnly.
- Rulesets:
- ProductChangeOnly
- Only produce new package versions if there were changes to product code.
- Examples: this is the default. Most repos should use this policy.
- CascadeVersion
- Produce new package versions if there were changes to product code, or if one of the package dependencies has updated.
- Examples: metapackages which are not top-level, but should still be used to help users get the latest transitive set of dependencies
- AlwaysUpdate
- Packages should update in every patch.
- Examples: top-level metapackages and templates.
- -->
- <PatchPolicy>ProductChangesOnly</PatchPolicy>
- <RootPath></RootPath>
- </Repository>
- <ShippedRepository>
- <Build>false</Build>
- <PatchPolicy>ProductChangesOnly</PatchPolicy>
- <RootPath></RootPath>
- </ShippedRepository>
- </ItemDefinitionGroup>
- <PropertyGroup>
- <TestsRequiredTheSharedRuntime Condition="'$(RepositoryToBuild)' == 'Templating'">true</TestsRequiredTheSharedRuntime>
- </PropertyGroup>
- <ItemGroup>
- <Repository Include="Scaffolding" PatchPolicy="AlwaysUpdate" />
- <Repository Include="Templating" RootPath="$(RepositoryRoot)src\Templating\" PatchPolicy="AlwaysUpdateAndCascadeVersions" />
- <Repository Include="EntityFrameworkCore" />
- <!-- Test-only repos -->
- <Repository Include="AuthSamples" RootPath="$(RepositoryRoot)src\AuthSamples\" PatchPolicy="AlwaysUpdateAndCascadeVersions" />
- </ItemGroup>
- <ItemGroup>
- <ShippedRepository Include="MvcPrecompilation" RootPath="$(RepositoryRoot)src\MvcPrecompilation\"/>
- </ItemGroup>
- </Project>
|