File tree Expand file tree Collapse file tree 12 files changed +53
-22
lines changed
BlazorLazyLoading.Components Expand file tree Collapse file tree 12 files changed +53
-22
lines changed Original file line number Diff line number Diff line change 6
6
</PropertyGroup >
7
7
8
8
<ItemGroup >
9
- <PackageReference Include =" Microsoft.AspNetCore.Components" Version =" 3.0.0 " />
10
- <PackageReference Include =" Microsoft.AspNetCore.Components.Web" Version =" 3.0.0 " />
9
+ <PackageReference Include =" Microsoft.AspNetCore.Components" Version =" 3.1.2 " />
10
+ <PackageReference Include =" Microsoft.AspNetCore.Components.Web" Version =" 3.1.2 " />
11
11
</ItemGroup >
12
12
13
13
<!-- Use Local NuGet package -->
14
14
<ItemGroup Condition =" $(BLLUseLocalNugetPackages)" >
15
- <PackageReference Include =" BlazorLazyLoading.Components" Version =" $(BLLVersion)" PrivateAssets = " all " />
15
+ <PackageReference Include =" BlazorLazyLoading.Components" Version =" $(BLLVersion)" />
16
16
</ItemGroup >
17
17
18
18
<!-- Use Project reference -->
19
19
<ItemGroup Condition =" !$(BLLUseLocalNugetPackages)" >
20
- <ProjectReference Include =" ..\..\nuget\BlazorLazyLoading.Components\BlazorLazyLoading.Components.csproj" PrivateAssets = " all " />
20
+ <ProjectReference Include =" ..\..\nuget\BlazorLazyLoading.Components\BlazorLazyLoading.Components.csproj" />
21
21
</ItemGroup >
22
22
23
23
<ItemGroup >
Original file line number Diff line number Diff line change 20
20
</ItemGroup >
21
21
22
22
<ItemGroup >
23
- <ProjectReference Include =" ..\WasmHost\WasmHost.csproj" />
23
+ <ProjectReference Include =" ..\WasmHost\WasmHost.csproj" PrivateAssets = " all " />
24
24
</ItemGroup >
25
25
26
26
</Project >
Original file line number Diff line number Diff line change 13
13
</PropertyGroup >
14
14
15
15
<ItemGroup >
16
- <ProjectReference Include =" ..\..\src\LazyComponents\LazyComponents.csproj" />
17
- <ProjectReference Include =" ..\..\src\ManifestReader\ManifestReader.csproj" />
16
+ <ProjectReference Include =" ..\..\src\LazyComponents\LazyComponents.csproj" />
17
+ <ProjectReference Include =" ..\..\src\ManifestReader\ManifestReader.csproj" />
18
18
</ItemGroup >
19
19
20
20
</Project >
Original file line number Diff line number Diff line change 1
- <Project Sdk =" Microsoft.NET.Sdk" >
1
+ <Project Sdk =" Microsoft.NET.Sdk.Web " >
2
2
3
3
<PropertyGroup >
4
4
<TargetFramework >netcoreapp3.1</TargetFramework >
9
9
</PropertyGroup >
10
10
11
11
<ItemGroup >
12
- <ProjectReference Include =" ..\BlazorLazyLoading.Components\BlazorLazyLoading.Components.csproj" />
13
12
<ProjectReference Include =" ..\..\src\AssemblyLoader.Server\AssemblyLoader.Server.csproj" />
13
+ <ProjectReference Include =" ..\..\src\ManifestReader\ManifestReader.csproj" />
14
14
</ItemGroup >
15
-
15
+
16
16
<PropertyGroup >
17
17
<PackageId >$(MSBuildProjectName)</PackageId >
18
18
<Product >$(MSBuildProjectName)</Product >
Original file line number Diff line number Diff line change
1
+ {
2
+ "iisSettings" : {
3
+ "windowsAuthentication" : false ,
4
+ "anonymousAuthentication" : true ,
5
+ "iisExpress" : {
6
+ "applicationUrl" : " http://localhost:56316/" ,
7
+ "sslPort" : 44315
8
+ }
9
+ },
10
+ "profiles" : {
11
+ "IIS Express" : {
12
+ "commandName" : " IISExpress" ,
13
+ "launchBrowser" : true ,
14
+ "environmentVariables" : {
15
+ "ASPNETCORE_ENVIRONMENT" : " Development"
16
+ }
17
+ },
18
+ "BlazorLazyLoading.Server" : {
19
+ "commandName" : " Project" ,
20
+ "launchBrowser" : true ,
21
+ "environmentVariables" : {
22
+ "ASPNETCORE_ENVIRONMENT" : " Development"
23
+ },
24
+ "applicationUrl" : " https://localhost:5001;http://localhost:5000"
25
+ }
26
+ }
27
+ }
Original file line number Diff line number Diff line change 8
8
</PropertyGroup >
9
9
10
10
<ItemGroup >
11
- <ProjectReference Include =" ..\BlazorLazyLoading.Components\BlazorLazyLoading.Components.csproj" />
12
11
<ProjectReference Include =" ..\..\src\AssemblyLoader.Wasm\AssemblyLoader.Wasm.csproj" />
12
+ <ProjectReference Include =" ..\..\src\ManifestReader\ManifestReader.csproj" />
13
+ </ItemGroup >
14
+
15
+ <ItemGroup >
16
+ <PackageReference Include =" Microsoft.Extensions.DependencyInjection.Abstractions" Version =" 3.1.0" PrivateAssets =" all" />
13
17
</ItemGroup >
14
18
15
19
<PropertyGroup >
Original file line number Diff line number Diff line change 16
16
<Version >0.0.0</Version >
17
17
<NoPackageAnalysis >true</NoPackageAnalysis >
18
18
19
- <GeneratePackageOnBuild >false </GeneratePackageOnBuild >
19
+ <GeneratePackageOnBuild Condition = " !$(BLLUseLocalNugetPackages) " >true </GeneratePackageOnBuild >
20
20
<IsPackable >true</IsPackable >
21
21
<IncludeSymbols >true</IncludeSymbols >
22
22
<SymbolPackageFormat >snupkg</SymbolPackageFormat >
53
53
</PropertyGroup >
54
54
</Target >
55
55
56
- <Target Name =" SetDemoNugetVersion" AfterTargets =" Build" >
56
+ <Target Name =" SetDemoNugetVersion" AfterTargets =" Build;Pack;Restore " >
57
57
<CallTarget Targets =" GetVersion" />
58
58
<ItemGroup >
59
59
<LocalNugetVersionProps Remove =" *" />
Original file line number Diff line number Diff line change 17
17
</ItemGroup >
18
18
19
19
<ItemGroup >
20
- <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly.Server" Version =" 3.2.0-rc1.20223.4" />
21
- <PackageReference Include =" Microsoft.Extensions.DependencyInjection.Abstractions" Version =" 3.1.3" />
22
- <PackageReference Include =" Microsoft.Extensions.FileProviders.Abstractions" Version =" 3.1.3" />
20
+ <PackageReference Include =" Microsoft.Extensions.DependencyInjection.Abstractions" Version =" 3.1.0" PrivateAssets =" all" />
21
+ <PackageReference Include =" Microsoft.Extensions.FileProviders.Abstractions" Version =" 3.1.0" PrivateAssets =" all" />
23
22
</ItemGroup >
24
23
25
24
</Project >
Original file line number Diff line number Diff line change 12
12
</PropertyGroup >
13
13
14
14
<ItemGroup >
15
- < PackageReference Include =" Microsoft.Extensions.DependencyInjection.Abstractions " Version = " 3.1.3 " />
15
+ < ProjectReference Include =" ..\AssemblyLoader\AssemblyLoader.csproj " />
16
16
</ItemGroup >
17
17
18
18
<ItemGroup >
19
- <ProjectReference Include =" ..\AssemblyLoader\AssemblyLoader.csproj " />
19
+ <PackageReference Include =" Microsoft.Extensions.DependencyInjection.Abstractions " Version = " 3.1.0 " PrivateAssets = " all " />
20
20
</ItemGroup >
21
21
22
22
</Project >
Original file line number Diff line number Diff line change 12
12
</PropertyGroup >
13
13
14
14
<ItemGroup >
15
- <PackageReference Include =" System.Reflection.Metadata" Version =" 1.8.0" />
15
+ <PackageReference Include =" System.Reflection.Metadata" Version =" 1.8.0" />
16
16
</ItemGroup >
17
17
18
18
</Project >
Original file line number Diff line number Diff line change 14
14
<ItemGroup >
15
15
<PackageReference Include =" Microsoft.AspNetCore.Components" Version =" 3.0.0" />
16
16
<PackageReference Include =" Microsoft.AspNetCore.Components.Web" Version =" 3.0.0" />
17
+ <PackageReference Include =" Newtonsoft.Json" Version =" 9.0.1" />
17
18
</ItemGroup >
18
19
19
20
<ItemGroup >
20
- <ProjectReference Include =" ..\AssemblyLoader\AssemblyLoader.csproj" />
21
- <ProjectReference Include =" ..\ManifestReader\ManifestReader.csproj" />
21
+ <ProjectReference Include =" ..\AssemblyLoader\AssemblyLoader.csproj" />
22
+ <ProjectReference Include =" ..\ManifestReader\ManifestReader.csproj" />
22
23
</ItemGroup >
23
24
24
25
</Project >
Original file line number Diff line number Diff line change 12
12
</PropertyGroup >
13
13
14
14
<ItemGroup >
15
- <ProjectReference Include =" ..\AssemblyLoader\AssemblyLoader.csproj" />
15
+ <ProjectReference Include =" ..\AssemblyLoader\AssemblyLoader.csproj" />
16
16
</ItemGroup >
17
17
18
18
<ItemGroup >
You can’t perform that action at this time.
0 commit comments