MusicStore 324 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. commit b8c11805640cf3ad367a54370d295ab59a6b6534
  2. Author: Nate McMaster <[email protected]>
  3. Date: Wed Nov 1 17:24:27 2017 -0700
  4. Pin tool and package versions to make builds more repeatable
  5. Part of aspnet/Universe#575
  6. diff --git a/.gitignore b/.gitignore
  7. index 8338b0c3ba8..aba684a0761 100644
  8. --- a/.gitignore
  9. +++ b/.gitignore
  10. @@ -41,4 +41,3 @@ launchSettings.json
  11. .vscode/
  12. TestResults/
  13. global.json
  14. -korebuild-lock.txt
  15. diff --git a/Directory.Build.props b/Directory.Build.props
  16. index f75adf7e4d6..a060aa3b00b 100644
  17. --- a/Directory.Build.props
  18. +++ b/Directory.Build.props
  19. @@ -1,2 +1,7 @@
  20. <Project>
  21. + <Import Project="build\dependencies.props" />
  22. +
  23. + <PropertyGroup>
  24. + <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  25. + </PropertyGroup>
  26. </Project>
  27. diff --git a/Directory.Build.targets b/Directory.Build.targets
  28. index bc118fd907b..e83ff95e395 100644
  29. --- a/Directory.Build.targets
  30. +++ b/Directory.Build.targets
  31. @@ -1,14 +1,5 @@
  32. -<Project InitialTargets="EnsureKoreBuildRestored">
  33. - <Target Name="EnsureKoreBuildRestored" Condition=" '$(KoreBuildRestoreTargetsImported)' != 'true' AND '$(MSBuildProjectName)' != 'BenchmarkDotNet.Autogenerated'">
  34. - <PropertyGroup>
  35. - <_BootstrapperFile Condition=" $([MSBuild]::IsOSUnixLike()) ">build.sh</_BootstrapperFile>
  36. - <_BootstrapperFile Condition="! $([MSBuild]::IsOSUnixLike()) ">build.cmd</_BootstrapperFile>
  37. - <_BootstrapperError>
  38. - Package references have not been pinned. Run './$(_BootstrapperFile) /t:Pin'.
  39. - Also, you can run './$(_BootstrapperFile) /t:Restore' which will pin *and* restore packages. '$(_BootstrapperFile)' can be found in '$(MSBuildThisFileDirectory)'.
  40. - </_BootstrapperError>
  41. - </PropertyGroup>
  42. -
  43. - <Error Code="KRB1001" Text="$(_BootstrapperError.Trim())" />
  44. - </Target>
  45. +<Project>
  46. + <PropertyGroup>
  47. + <RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">$(MicrosoftNETCoreApp20PackageVersion)</RuntimeFrameworkVersion>
  48. + </PropertyGroup>
  49. </Project>
  50. diff --git a/NuGet.config b/NuGet.config
  51. index 20060c934e4..4e8a1f6de15 100644
  52. --- a/NuGet.config
  53. +++ b/NuGet.config
  54. @@ -3,6 +3,7 @@
  55. <packageSources>
  56. <clear />
  57. <add key="AspNetCore" value="https://dotnet.myget.org/F/aspnetcore-ci-dev/api/v3/index.json" />
  58. + <add key="AspNetCoreTools" value="https://dotnet.myget.org/F/aspnetcore-tools/api/v3/index.json" />
  59. <add key="NuGet" value="https://api.nuget.org/v3/index.json" />
  60. </packageSources>
  61. </configuration>
  62. diff --git a/build/dependencies.props b/build/dependencies.props
  63. new file mode 100644
  64. index 00000000000..99233f667ca
  65. --- /dev/null
  66. +++ b/build/dependencies.props
  67. @@ -0,0 +1,44 @@
  68. +<Project>
  69. + <PropertyGroup>
  70. + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
  71. + </PropertyGroup>
  72. + <PropertyGroup Label="Package Versions">
  73. + <MicrosoftAspNetCoreAllPackageVersion>2.1.0-preview1-27498</MicrosoftAspNetCoreAllPackageVersion>
  74. + <MicrosoftAspNetCoreAspNetCoreModulePackageVersion>1.0.0-pre-10141</MicrosoftAspNetCoreAspNetCoreModulePackageVersion>
  75. + <MicrosoftAspNetCoreAuthenticationCookiesPackageVersion>2.1.0-preview1-27498</MicrosoftAspNetCoreAuthenticationCookiesPackageVersion>
  76. + <MicrosoftAspNetCoreAuthenticationCorePackageVersion>2.1.0-preview1-27498</MicrosoftAspNetCoreAuthenticationCorePackageVersion>
  77. + <MicrosoftAspNetCoreAuthenticationFacebookPackageVersion>2.1.0-preview1-27498</MicrosoftAspNetCoreAuthenticationFacebookPackageVersion>
  78. + <MicrosoftAspNetCoreAuthenticationGooglePackageVersion>2.1.0-preview1-27498</MicrosoftAspNetCoreAuthenticationGooglePackageVersion>
  79. + <MicrosoftAspNetCoreAuthenticationMicrosoftAccountPackageVersion>2.1.0-preview1-27498</MicrosoftAspNetCoreAuthenticationMicrosoftAccountPackageVersion>
  80. + <MicrosoftAspNetCoreAuthenticationOpenIdConnectPackageVersion>2.1.0-preview1-27498</MicrosoftAspNetCoreAuthenticationOpenIdConnectPackageVersion>
  81. + <MicrosoftAspNetCoreAuthenticationTwitterPackageVersion>2.1.0-preview1-27498</MicrosoftAspNetCoreAuthenticationTwitterPackageVersion>
  82. + <MicrosoftAspNetCoreDiagnosticsEntityFrameworkCorePackageVersion>2.1.0-preview1-27498</MicrosoftAspNetCoreDiagnosticsEntityFrameworkCorePackageVersion>
  83. + <MicrosoftAspNetCoreIdentityEntityFrameworkCorePackageVersion>2.1.0-preview1-27498</MicrosoftAspNetCoreIdentityEntityFrameworkCorePackageVersion>
  84. + <MicrosoftAspNetCoreIdentityPackageVersion>2.1.0-preview1-27498</MicrosoftAspNetCoreIdentityPackageVersion>
  85. + <MicrosoftAspNetCoreMvcPackageVersion>2.1.0-preview1-27498</MicrosoftAspNetCoreMvcPackageVersion>
  86. + <MicrosoftAspNetCoreMvcRazorViewCompilationPackageVersion>2.1.0-preview1-27498</MicrosoftAspNetCoreMvcRazorViewCompilationPackageVersion>
  87. + <MicrosoftAspNetCorePackageVersion>2.1.0-preview1-27498</MicrosoftAspNetCorePackageVersion>
  88. + <MicrosoftAspNetCoreServerHttpSysPackageVersion>2.1.0-preview1-27498</MicrosoftAspNetCoreServerHttpSysPackageVersion>
  89. + <MicrosoftAspNetCoreServerIntegrationTestingPackageVersion>0.5.0-preview1-27498</MicrosoftAspNetCoreServerIntegrationTestingPackageVersion>
  90. + <MicrosoftAspNetCoreSessionPackageVersion>2.1.0-preview1-27498</MicrosoftAspNetCoreSessionPackageVersion>
  91. + <MicrosoftAspNetCoreStaticFilesPackageVersion>2.1.0-preview1-27498</MicrosoftAspNetCoreStaticFilesPackageVersion>
  92. + <MicrosoftAspNetCoreWebUtilitiesPackageVersion>2.1.0-preview1-27498</MicrosoftAspNetCoreWebUtilitiesPackageVersion>
  93. + <MicrosoftEntityFrameworkCoreInMemoryPackageVersion>2.1.0-preview1-27498</MicrosoftEntityFrameworkCoreInMemoryPackageVersion>
  94. + <MicrosoftEntityFrameworkCoreSqlServerPackageVersion>2.1.0-preview1-27498</MicrosoftEntityFrameworkCoreSqlServerPackageVersion>
  95. + <MicrosoftExtensionsCommandLineUtilsSourcesPackageVersion>2.1.0-preview1-27498</MicrosoftExtensionsCommandLineUtilsSourcesPackageVersion>
  96. + <MicrosoftExtensionsConfigurationBinderPackageVersion>2.1.0-preview1-27498</MicrosoftExtensionsConfigurationBinderPackageVersion>
  97. + <MicrosoftExtensionsConfigurationCommandLinePackageVersion>2.1.0-preview1-27498</MicrosoftExtensionsConfigurationCommandLinePackageVersion>
  98. + <MicrosoftExtensionsConfigurationEnvironmentVariablesPackageVersion>2.1.0-preview1-27498</MicrosoftExtensionsConfigurationEnvironmentVariablesPackageVersion>
  99. + <MicrosoftExtensionsConfigurationJsonPackageVersion>2.1.0-preview1-27498</MicrosoftExtensionsConfigurationJsonPackageVersion>
  100. + <MicrosoftExtensionsConfigurationUserSecretsPackageVersion>2.1.0-preview1-27498</MicrosoftExtensionsConfigurationUserSecretsPackageVersion>
  101. + <MicrosoftExtensionsLoggingConsolePackageVersion>2.1.0-preview1-27498</MicrosoftExtensionsLoggingConsolePackageVersion>
  102. + <MicrosoftExtensionsLoggingPackageVersion>2.1.0-preview1-27498</MicrosoftExtensionsLoggingPackageVersion>
  103. + <MicrosoftExtensionsLoggingTestingPackageVersion>2.1.0-preview1-27498</MicrosoftExtensionsLoggingTestingPackageVersion>
  104. + <MicrosoftNETCoreApp20PackageVersion>2.0.0</MicrosoftNETCoreApp20PackageVersion>
  105. + <MicrosoftNETTestSdkPackageVersion>15.3.0</MicrosoftNETTestSdkPackageVersion>
  106. + <SystemDataSqlClientPackageVersion>4.4.0</SystemDataSqlClientPackageVersion>
  107. + <XunitPackageVersion>2.3.0</XunitPackageVersion>
  108. + <XunitRunnerVisualStudioPackageVersion>2.3.0</XunitRunnerVisualStudioPackageVersion>
  109. + </PropertyGroup>
  110. + <Import Project="$(DotNetPackageVersionPropsPath)" Condition=" '$(DotNetPackageVersionPropsPath)' != '' " />
  111. +</Project>
  112. diff --git a/build/repo.props b/build/repo.props
  113. index 13fe1c296ab..b55e651b87d 100644
  114. --- a/build/repo.props
  115. +++ b/build/repo.props
  116. @@ -1,6 +1,7 @@
  117. <Project>
  118. - <ItemGroup>
  119. - <PackageLineup Include="Internal.AspNetCore.Universe.Lineup" Version="2.1.0-*" />
  120. - <PackageLineup Include="Internal.AspNetCore.Partners.Lineup" Version="2.1.0-*" />
  121. - </ItemGroup>
  122. + <PropertyGroup>
  123. + <!-- These properties are use by the automation that updates dependencies.props -->
  124. + <LineupPackageId>Internal.AspNetCore.Universe.Lineup</LineupPackageId>
  125. + <LineupPackageRestoreSource>https://dotnet.myget.org/F/aspnetcore-ci-dev/api/v3/index.json</LineupPackageRestoreSource>
  126. + </PropertyGroup>
  127. </Project>
  128. diff --git a/korebuild-lock.txt b/korebuild-lock.txt
  129. new file mode 100644
  130. index 00000000000..36d80560371
  131. --- /dev/null
  132. +++ b/korebuild-lock.txt
  133. @@ -0,0 +1,2 @@
  134. +version:2.1.0-preview1-15550
  135. +commithash:0dd080d0d87b4d1966ec0af9961dc8bacc04f84f
  136. diff --git a/korebuild.json b/korebuild.json
  137. new file mode 100644
  138. index 00000000000..bd5d51a51b0
  139. --- /dev/null
  140. +++ b/korebuild.json
  141. @@ -0,0 +1,4 @@
  142. +{
  143. + "$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/dev/tools/korebuild.schema.json",
  144. + "channel": "dev"
  145. +}
  146. diff --git a/samples/MusicStore/MusicStore.csproj b/samples/MusicStore/MusicStore.csproj
  147. index 7ec4df776fb..061c48f9f45 100644
  148. --- a/samples/MusicStore/MusicStore.csproj
  149. +++ b/samples/MusicStore/MusicStore.csproj
  150. @@ -15,30 +15,30 @@
  151. </ItemGroup>
  152. <ItemGroup>
  153. - <PackageReference Include="Microsoft.AspNetCore.AspNetCoreModule" />
  154. + <PackageReference Include="Microsoft.AspNetCore.AspNetCoreModule" Version="$(MicrosoftAspNetCoreAspNetCoreModulePackageVersion)" />
  155. </ItemGroup>
  156. <ItemGroup Condition="'$(TargetFrameworkIdentifier)'=='.NETCoreApp' AND '$(Configuration)' == 'RuntimeStore' ">
  157. - <PackageReference Include="Microsoft.AspNetCore.All" />
  158. + <PackageReference Include="Microsoft.AspNetCore.All" Version="$(MicrosoftAspNetCoreAllPackageVersion)" />
  159. </ItemGroup>
  160. <ItemGroup Condition="'$(TargetFrameworkIdentifier)'=='.NETFramework' OR '$(Configuration)' != 'RuntimeStore' ">
  161. - <PackageReference Include="Microsoft.AspNetCore" />
  162. - <PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" />
  163. - <PackageReference Include="Microsoft.AspNetCore.Authentication.Facebook" />
  164. - <PackageReference Include="Microsoft.AspNetCore.Authentication.Google" />
  165. - <PackageReference Include="Microsoft.AspNetCore.Authentication.MicrosoftAccount" />
  166. - <PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" />
  167. - <PackageReference Include="Microsoft.AspNetCore.Authentication.Twitter" />
  168. - <PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" />
  169. - <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
  170. - <PackageReference Include="Microsoft.AspNetCore.Mvc" />
  171. - <PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.ViewCompilation" PrivateAssets="All" />
  172. - <PackageReference Include="Microsoft.AspNetCore.Server.HttpSys" />
  173. - <PackageReference Include="Microsoft.AspNetCore.Session" />
  174. - <PackageReference Include="Microsoft.AspNetCore.StaticFiles" />
  175. - <PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" />
  176. - <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" />
  177. - <PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" />
  178. + <PackageReference Include="Microsoft.AspNetCore" Version="$(MicrosoftAspNetCorePackageVersion)" />
  179. + <PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="$(MicrosoftAspNetCoreAuthenticationCookiesPackageVersion)" />
  180. + <PackageReference Include="Microsoft.AspNetCore.Authentication.Facebook" Version="$(MicrosoftAspNetCoreAuthenticationFacebookPackageVersion)" />
  181. + <PackageReference Include="Microsoft.AspNetCore.Authentication.Google" Version="$(MicrosoftAspNetCoreAuthenticationGooglePackageVersion)" />
  182. + <PackageReference Include="Microsoft.AspNetCore.Authentication.MicrosoftAccount" Version="$(MicrosoftAspNetCoreAuthenticationMicrosoftAccountPackageVersion)" />
  183. + <PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="$(MicrosoftAspNetCoreAuthenticationOpenIdConnectPackageVersion)" />
  184. + <PackageReference Include="Microsoft.AspNetCore.Authentication.Twitter" Version="$(MicrosoftAspNetCoreAuthenticationTwitterPackageVersion)" />
  185. + <PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="$(MicrosoftAspNetCoreDiagnosticsEntityFrameworkCorePackageVersion)" />
  186. + <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="$(MicrosoftAspNetCoreIdentityEntityFrameworkCorePackageVersion)" />
  187. + <PackageReference Include="Microsoft.AspNetCore.Mvc" Version="$(MicrosoftAspNetCoreMvcPackageVersion)" />
  188. + <PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.ViewCompilation" PrivateAssets="All" Version="$(MicrosoftAspNetCoreMvcRazorViewCompilationPackageVersion)" />
  189. + <PackageReference Include="Microsoft.AspNetCore.Server.HttpSys" Version="$(MicrosoftAspNetCoreServerHttpSysPackageVersion)" />
  190. + <PackageReference Include="Microsoft.AspNetCore.Session" Version="$(MicrosoftAspNetCoreSessionPackageVersion)" />
  191. + <PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="$(MicrosoftAspNetCoreStaticFilesPackageVersion)" />
  192. + <PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="$(MicrosoftEntityFrameworkCoreInMemoryPackageVersion)" />
  193. + <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="$(MicrosoftEntityFrameworkCoreSqlServerPackageVersion)" />
  194. + <PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="$(MicrosoftExtensionsConfigurationCommandLinePackageVersion)" />
  195. </ItemGroup>
  196. </Project>
  197. diff --git a/test/Directory.Build.props b/test/Directory.Build.props
  198. index f900c4aeb54..6bb1f5a6601 100644
  199. --- a/test/Directory.Build.props
  200. +++ b/test/Directory.Build.props
  201. @@ -2,8 +2,8 @@
  202. <Import Project="..\Directory.Build.props" />
  203. <ItemGroup>
  204. - <PackageReference Include="Microsoft.NET.Test.Sdk" />
  205. - <PackageReference Include="xunit" />
  206. - <PackageReference Include="xunit.runner.visualstudio" />
  207. + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNETTestSdkPackageVersion)" />
  208. + <PackageReference Include="xunit" Version="$(XunitPackageVersion)" />
  209. + <PackageReference Include="xunit.runner.visualstudio" Version="$(XunitRunnerVisualStudioPackageVersion)" />
  210. </ItemGroup>
  211. </Project>
  212. diff --git a/test/MusicStore.E2ETests/MusicStore.E2ETests.csproj b/test/MusicStore.E2ETests/MusicStore.E2ETests.csproj
  213. index f4b5a500aa5..6ca1a3b5d37 100644
  214. --- a/test/MusicStore.E2ETests/MusicStore.E2ETests.csproj
  215. +++ b/test/MusicStore.E2ETests/MusicStore.E2ETests.csproj
  216. @@ -14,20 +14,20 @@
  217. </ItemGroup>
  218. <ItemGroup>
  219. - <PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" />
  220. - <PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" />
  221. - <PackageReference Include="Microsoft.AspNetCore.Identity" />
  222. - <PackageReference Include="Microsoft.AspNetCore.Server.IntegrationTesting" />
  223. - <PackageReference Include="Microsoft.AspNetCore.WebUtilities" />
  224. - <PackageReference Include="Microsoft.Extensions.CommandLineUtils.Sources" />
  225. - <PackageReference Include="Microsoft.Extensions.Configuration.Binder" />
  226. - <PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" />
  227. - <PackageReference Include="Microsoft.Extensions.Configuration.Json" />
  228. - <PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" />
  229. - <PackageReference Include="Microsoft.Extensions.Logging.Console" />
  230. - <PackageReference Include="Microsoft.Extensions.Logging" />
  231. - <PackageReference Include="Microsoft.Extensions.Logging.Testing" />
  232. - <PackageReference Include="System.Data.SqlClient" />
  233. + <PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="$(MicrosoftAspNetCoreAuthenticationCookiesPackageVersion)" />
  234. + <PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="$(MicrosoftAspNetCoreAuthenticationOpenIdConnectPackageVersion)" />
  235. + <PackageReference Include="Microsoft.AspNetCore.Identity" Version="$(MicrosoftAspNetCoreIdentityPackageVersion)" />
  236. + <PackageReference Include="Microsoft.AspNetCore.Server.IntegrationTesting" Version="$(MicrosoftAspNetCoreServerIntegrationTestingPackageVersion)" />
  237. + <PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="$(MicrosoftAspNetCoreWebUtilitiesPackageVersion)" />
  238. + <PackageReference Include="Microsoft.Extensions.CommandLineUtils.Sources" Version="$(MicrosoftExtensionsCommandLineUtilsSourcesPackageVersion)" />
  239. + <PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="$(MicrosoftExtensionsConfigurationBinderPackageVersion)" />
  240. + <PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="$(MicrosoftExtensionsConfigurationEnvironmentVariablesPackageVersion)" />
  241. + <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="$(MicrosoftExtensionsConfigurationJsonPackageVersion)" />
  242. + <PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="$(MicrosoftExtensionsConfigurationUserSecretsPackageVersion)" />
  243. + <PackageReference Include="Microsoft.Extensions.Logging.Console" Version="$(MicrosoftExtensionsLoggingConsolePackageVersion)" />
  244. + <PackageReference Include="Microsoft.Extensions.Logging" Version="$(MicrosoftExtensionsLoggingPackageVersion)" />
  245. + <PackageReference Include="Microsoft.Extensions.Logging.Testing" Version="$(MicrosoftExtensionsLoggingTestingPackageVersion)" />
  246. + <PackageReference Include="System.Data.SqlClient" Version="$(SystemDataSqlClientPackageVersion)" />
  247. </ItemGroup>
  248. </Project>
  249. diff --git a/test/MusicStore.Test/MusicStore.Test.csproj b/test/MusicStore.Test/MusicStore.Test.csproj
  250. index 82798c9d9e1..81246dd5444 100644
  251. --- a/test/MusicStore.Test/MusicStore.Test.csproj
  252. +++ b/test/MusicStore.Test/MusicStore.Test.csproj
  253. @@ -9,8 +9,8 @@
  254. </ItemGroup>
  255. <ItemGroup>
  256. - <PackageReference Include="Microsoft.AspNetCore.Authentication.Core" />
  257. - <PackageReference Include="Microsoft.Extensions.Logging.Testing" />
  258. + <PackageReference Include="Microsoft.AspNetCore.Authentication.Core" Version="$(MicrosoftAspNetCoreAuthenticationCorePackageVersion)" />
  259. + <PackageReference Include="Microsoft.Extensions.Logging.Testing" Version="$(MicrosoftExtensionsLoggingTestingPackageVersion)" />
  260. </ItemGroup>
  261. </Project>