File tree Expand file tree Collapse file tree 8 files changed +10
-20
lines changed
src/Templating/src/Microsoft.DotNet.Web.ProjectTemplates Expand file tree Collapse file tree 8 files changed +10
-20
lines changed Original file line number Diff line number Diff line change 2
2
path = modules/EntityFrameworkCore
3
3
url = https://github.com/aspnet/EntityFrameworkCore.git
4
4
branch = release/2.1
5
- [submodule "modules/Scaffolding "]
6
- path = modules/Scaffolding
7
- url = https://github.com/aspnet/Scaffolding.git
8
- branch = release/2.1
Original file line number Diff line number Diff line change 16
16
</ItemDefinitionGroup >
17
17
18
18
<ItemGroup >
19
- <PackageArtifact Include =" dotnet-aspnet-codegenerator" Category =" ship" />
20
19
<PackageArtifact Include =" dotnet-dev-certs" Category =" ship" />
21
20
<PackageArtifact Include =" dotnet-ef" Category =" ship" />
22
21
<PackageArtifact Include =" dotnet-sql-cache" Category =" ship" />
166
165
<PackageArtifact Include =" Microsoft.Net.Http.Headers" AllMetapackage =" true" AppMetapackage =" true" Category =" ship" />
167
166
<PackageArtifact Include =" Microsoft.NET.Sdk.Razor" Category =" ship" />
168
167
<PackageArtifact Include =" Microsoft.Owin.Security.Interop" Category =" ship" />
169
- <PackageArtifact Include =" Microsoft.VisualStudio.Web.CodeGeneration.Contracts" Category =" ship" />
170
- <PackageArtifact Include =" Microsoft.VisualStudio.Web.CodeGeneration.Core" Category =" ship" />
171
- <PackageArtifact Include =" Microsoft.VisualStudio.Web.CodeGeneration.Design" Category =" ship" />
172
- <PackageArtifact Include =" Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore" Category =" ship" />
173
- <PackageArtifact Include =" Microsoft.VisualStudio.Web.CodeGeneration.Templating" Category =" ship" />
174
- <PackageArtifact Include =" Microsoft.VisualStudio.Web.CodeGeneration.Utils" Category =" ship" />
175
- <PackageArtifact Include =" Microsoft.VisualStudio.Web.CodeGeneration" Category =" ship" />
176
- <PackageArtifact Include =" Microsoft.VisualStudio.Web.CodeGenerators.Mvc" Category =" ship" />
177
168
178
169
<PackageArtifact Include =" Microsoft.AspNetCore.Hosting.WebHostBuilderFactory.Sources" Category =" noship" />
179
170
</ItemGroup >
Original file line number Diff line number Diff line change 8
8
9
9
<ItemGroup >
10
10
<RepositoryBuildOrder Include =" EntityFrameworkCore" Order =" 8" />
11
- <RepositoryBuildOrder Include =" Scaffolding" Order =" 15" />
12
11
<RepositoryBuildOrder Include =" Templating" Order =" 17" RootPath =" $(RepositoryRoot)src\Templating\" />
13
12
</ItemGroup >
14
13
</Project >
Original file line number Diff line number Diff line change 75
75
<MicrosoftExtensionsValueStopwatchSourcesPackageVersion >2.1.1</MicrosoftExtensionsValueStopwatchSourcesPackageVersion >
76
76
<MicrosoftExtensionsWebEncodersPackageVersion >2.1.1</MicrosoftExtensionsWebEncodersPackageVersion >
77
77
78
+ <!-- Packages that come from aspnet/Scaffolding. (Used only in the 2.1.x package archives.) -->
79
+ <MicrosoftVisualStudioWebCodeGenerationContractsPackageVersion >2.1.7</MicrosoftVisualStudioWebCodeGenerationContractsPackageVersion >
80
+ <MicrosoftVisualStudioWebCodeGenerationCorePackageVersion >2.1.7</MicrosoftVisualStudioWebCodeGenerationCorePackageVersion >
81
+ <MicrosoftVisualStudioWebCodeGenerationDesignPackageVersion >2.1.7</MicrosoftVisualStudioWebCodeGenerationDesignPackageVersion >
82
+ <MicrosoftVisualStudioWebCodeGenerationEntityFrameworkCorePackageVersion >2.1.7</MicrosoftVisualStudioWebCodeGenerationEntityFrameworkCorePackageVersion >
83
+ <MicrosoftVisualStudioWebCodeGenerationPackageVersion >2.1.7</MicrosoftVisualStudioWebCodeGenerationPackageVersion >
84
+ <MicrosoftVisualStudioWebCodeGenerationTemplatingPackageVersion >2.1.7</MicrosoftVisualStudioWebCodeGenerationTemplatingPackageVersion >
85
+ <MicrosoftVisualStudioWebCodeGenerationUtilsPackageVersion >2.1.7</MicrosoftVisualStudioWebCodeGenerationUtilsPackageVersion >
86
+ <MicrosoftVisualStudioWebCodeGeneratorsMvcPackageVersion >2.1.7</MicrosoftVisualStudioWebCodeGeneratorsMvcPackageVersion >
87
+
78
88
<!-- These dependencies are required to build. The need to be used as explicit package references -->
79
89
<MicrosoftAspNetCoreRazorDesignPackageVersion >2.1.1</MicrosoftAspNetCoreRazorDesignPackageVersion >
80
90
<MicrosoftAspNetCoreMvcRazorExtensionsPackageVersion >2.1.1</MicrosoftAspNetCoreMvcRazorExtensionsPackageVersion >
Original file line number Diff line number Diff line change 36
36
</PropertyGroup >
37
37
38
38
<ItemGroup >
39
- <Repository Include =" Scaffolding" PatchPolicy =" AlwaysUpdate" />
40
39
<Repository Include =" Templating" PatchPolicy =" AlwaysUpdateAndCascadeVersions" RootPath =" $(RepositoryRoot)src\Templating\" />
41
40
<Repository Include =" EntityFrameworkCore" />
42
41
</ItemGroup >
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 22
22
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="${MicrosoftAspNetCoreRazorDesignPackageVersion}" PrivateAssets="All" />
23
23
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="${MicrosoftEntityFrameworkCoreSqlitePackageVersion}" Condition=" '$(IndividualLocalAuth)' == 'True' AND '$(UseLocalDB)' != 'True'" />
24
24
<PackageReference Include="Microsoft.VisualStudio.Web.BrowserLink" Version="${MicrosoftVisualStudioWebBrowserLinkPackageVersion}" Condition="'$(UseBrowserLink)' == 'True'" />
25
- <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="${MicrosoftVisualStudioWebCodeGenerationDesignPackageVersion}" PrivateAssets="All" Condition="'$(IndividualAuth)' == 'True'" />
26
25
</ItemGroup>
27
26
<ItemGroup Condition="'$(TargetFrameworkOverride)' != ''">
28
27
<PackageReference Include="Microsoft.AspNetCore" Version="${MicrosoftAspNetCorePackageVersion}" />
40
39
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="${MicrosoftEntityFrameworkCoreSqlServerPackageVersion}" Condition=" '$(IndividualLocalAuth)' == 'True' AND '$(UseLocalDB)' == 'True'" />
41
40
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="${MicrosoftEntityFrameworkCoreToolsPackageVersion}" PrivateAssets="All" Condition="'$(IndividualLocalAuth)' == 'True'" />
42
41
<PackageReference Include="Microsoft.VisualStudio.Web.BrowserLink" Version="${MicrosoftVisualStudioWebBrowserLinkPackageVersion}" Condition="'$(UseBrowserLink)' == 'True'" />
43
- <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="${MicrosoftVisualStudioWebCodeGenerationDesignPackageVersion}" PrivateAssets="All" Condition="'$(IndividualAuth)' == 'True'" />
44
42
</ItemGroup>
45
43
46
44
</Project>
Original file line number Diff line number Diff line change 22
22
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="${MicrosoftAspNetCoreRazorDesignPackageVersion}" PrivateAssets="All" />
23
23
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="${MicrosoftEntityFrameworkCoreSqlitePackageVersion}" Condition=" '$(IndividualLocalAuth)' == 'True' AND '$(UseLocalDB)' != 'True'" />
24
24
<PackageReference Include="Microsoft.VisualStudio.Web.BrowserLink" Version="${MicrosoftVisualStudioWebBrowserLinkPackageVersion}" Condition="'$(UseBrowserLink)' == 'True'" />
25
- <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="${MicrosoftVisualStudioWebCodeGenerationDesignPackageVersion}" PrivateAssets="All" Condition="'$(IndividualAuth)' == 'True'" />
26
25
</ItemGroup>
27
26
<ItemGroup Condition="'$(TargetFrameworkOverride)' != ''">
28
27
<PackageReference Include="Microsoft.AspNetCore" Version="${MicrosoftAspNetCorePackageVersion}" />
40
39
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="${MicrosoftEntityFrameworkCoreSqlServerPackageVersion}" Condition=" '$(IndividualLocalAuth)' == 'True' AND '$(UseLocalDB)' == 'True'" />
41
40
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="${MicrosoftEntityFrameworkCoreToolsPackageVersion}" PrivateAssets="All" Condition="'$(IndividualLocalAuth)' == 'True'" />
42
41
<PackageReference Include="Microsoft.VisualStudio.Web.BrowserLink" Version="${MicrosoftVisualStudioWebBrowserLinkPackageVersion}" Condition="'$(UseBrowserLink)' == 'True'" />
43
- <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="${MicrosoftVisualStudioWebCodeGenerationDesignPackageVersion}" PrivateAssets="All" Condition="'$(IndividualAuth)' == 'True'" />
44
42
</ItemGroup>
45
43
46
44
</Project>
You can’t perform that action at this time.
0 commit comments