Skip to content

Commit 19ff186

Browse files
Updated GroupDocs.Viewer for .NET to 24.1.1 (#238)
* Updated GroupDocs.Viewer for .NET to 24.1.1 * Updated workflows
1 parent 52c9e45 commit 19ff186

File tree

28 files changed

+427
-638
lines changed

28 files changed

+427
-638
lines changed

.github/workflows/dotnet-desktop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test .NET Core Desktop build
1+
name: Test .NET Framework Build
22

33
on:
44
push:
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
configuration: [Debug,Release]
15+
configuration: [ Debug ]
1616

1717
runs-on: windows-latest # For a list of available runner types, refer to
1818
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on

.github/workflows/dotnet.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test .NET Core build
1+
name: Test .NET build
22

33
on:
44
push:
@@ -14,10 +14,10 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Setup .NET
17-
uses: actions/setup-dotnet@v1
17+
uses: actions/setup-dotnet@v3
1818
with:
19-
dotnet-version: 3.1.301
19+
dotnet-version: '6.0.x'
2020
- name: Restore dependencies
21-
run: dotnet restore Examples/GroupDocs.Viewer.Examples.CSharp.Core
22-
- name: Test build for .NET Core project
23-
run: dotnet build --no-restore Examples/GroupDocs.Viewer.Examples.CSharp.Core
21+
run: dotnet restore Examples/GroupDocs.Viewer.Examples.CSharp.NET6
22+
- name: Test build for .NET project
23+
run: dotnet build --no-restore Examples/GroupDocs.Viewer.Examples.CSharp.NET6

Demos/ASP.NET Core/src/GroupDocs.Viewer.AspNetCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PackageReference Include="GroupDocs.Viewer.UI" Version="6.0.16" />
1111
<PackageReference Include="GroupDocs.Viewer.UI.Api.Local.Cache" Version="6.0.2" />
1212
<PackageReference Include="GroupDocs.Viewer.UI.Api.Local.Storage" Version="6.0.2" />
13-
<PackageReference Include="GroupDocs.Viewer.UI.SelfHost.Api" Version="6.0.19" />
13+
<PackageReference Include="GroupDocs.Viewer.UI.SelfHost.Api" Version="6.0.21" />
1414
</ItemGroup>
1515

1616
<ItemGroup>

Demos/ASP.NET MVC/src/GroupDocs.Viewer.AspNetMvc.csproj

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
<BuildClientApp>false</BuildClientApp>
2727
<ClientRoot>ClientApp\</ClientRoot>
2828
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
29+
<NuGetPackageImportStamp>
30+
</NuGetPackageImportStamp>
2931
</PropertyGroup>
3032
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
3133
<DebugSymbols>true</DebugSymbols>
@@ -49,8 +51,11 @@
4951
<Reference Include="AsyncKeyedLock, Version=6.2.1.0, Culture=neutral, PublicKeyToken=c6dde91429ba0f2f, processorArchitecture=MSIL">
5052
<HintPath>packages\AsyncKeyedLock.6.2.1\lib\netstandard2.0\AsyncKeyedLock.dll</HintPath>
5153
</Reference>
52-
<Reference Include="GroupDocs.Viewer, Version=23.12.0.0, Culture=neutral, PublicKeyToken=716fcc553a201e56, processorArchitecture=MSIL">
53-
<HintPath>packages\GroupDocs.Viewer.23.12.0\lib\net462\GroupDocs.Viewer.dll</HintPath>
54+
<Reference Include="GroupDocs.Viewer, Version=24.1.1.0, Culture=neutral, PublicKeyToken=716fcc553a201e56, processorArchitecture=MSIL">
55+
<HintPath>packages\GroupDocs.Viewer.24.1.1\lib\net462\GroupDocs.Viewer.dll</HintPath>
56+
</Reference>
57+
<Reference Include="Microsoft.Bcl.AsyncInterfaces, Version=6.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
58+
<HintPath>packages\Microsoft.Bcl.AsyncInterfaces.6.0.0\lib\net461\Microsoft.Bcl.AsyncInterfaces.dll</HintPath>
5459
</Reference>
5560
<Reference Include="Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
5661
<HintPath>packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.3.6.0\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll</HintPath>
@@ -63,17 +68,39 @@
6368
<HintPath>packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
6469
</Reference>
6570
<Reference Include="System" />
71+
<Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
72+
<HintPath>packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll</HintPath>
73+
</Reference>
6674
<Reference Include="System.Data" />
6775
<Reference Include="System.Drawing" />
76+
<Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
77+
<HintPath>packages\System.Memory.4.5.4\lib\net461\System.Memory.dll</HintPath>
78+
</Reference>
6879
<Reference Include="System.Net.Http.Formatting, Version=5.2.9.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
6980
<HintPath>packages\Microsoft.AspNet.WebApi.Client.5.2.9\lib\net45\System.Net.Http.Formatting.dll</HintPath>
7081
</Reference>
82+
<Reference Include="System.Numerics" />
83+
<Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
84+
<HintPath>packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
85+
</Reference>
7186
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
7287
<HintPath>packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\net461\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
7388
</Reference>
89+
<Reference Include="System.Text.Encoding.CodePages, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
90+
<HintPath>packages\System.Text.Encoding.CodePages.6.0.0\lib\net461\System.Text.Encoding.CodePages.dll</HintPath>
91+
</Reference>
92+
<Reference Include="System.Text.Encodings.Web, Version=6.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
93+
<HintPath>packages\System.Text.Encodings.Web.6.0.0\lib\net461\System.Text.Encodings.Web.dll</HintPath>
94+
</Reference>
95+
<Reference Include="System.Text.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
96+
<HintPath>packages\System.Text.Json.6.0.0\lib\net461\System.Text.Json.dll</HintPath>
97+
</Reference>
7498
<Reference Include="System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
7599
<HintPath>packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll</HintPath>
76100
</Reference>
101+
<Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
102+
<HintPath>packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll</HintPath>
103+
</Reference>
77104
<Reference Include="System.Web.Cors, Version=5.2.9.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
78105
<HintPath>packages\Microsoft.AspNet.Cors.5.2.9\lib\net45\System.Web.Cors.dll</HintPath>
79106
</Reference>
@@ -279,6 +306,7 @@
279306
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
280307
</PropertyGroup>
281308
<Error Condition="!Exists('packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.3.6.0\build\net472\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.3.6.0\build\net472\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.targets'))" />
309+
<Error Condition="!Exists('packages\System.Text.Json.6.0.0\build\System.Text.Json.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\System.Text.Json.6.0.0\build\System.Text.Json.targets'))" />
282310
</Target>
283311
<Target Name="InstallPackages" BeforeTargets="BeforeBuild" Condition="'$(BuildClientApp)' == 'True'">
284312
<Message Importance="high" Text="*** Installing npm packages ***" />
@@ -288,4 +316,5 @@
288316
<Message Importance="high" Text="*** Bundling client files ***" />
289317
<Exec WorkingDirectory="$(ClientRoot)" Command="npm run build" ContinueOnError="false" />
290318
</Target>
319+
<Import Project="packages\System.Text.Json.6.0.0\build\System.Text.Json.targets" Condition="Exists('packages\System.Text.Json.6.0.0\build\System.Text.Json.targets')" />
291320
</Project>

Demos/ASP.NET MVC/src/Web.config

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,9 @@
5656
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
5757
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
5858
</dependentAssembly>
59-
<dependentAssembly>
60-
<assemblyIdentity name="Aspose.Words.Shaping.HarfBuzz" publicKeyToken="716fcc553a201e56" culture="neutral" />
61-
<bindingRedirect oldVersion="0.0.0.0-23.11.0.0" newVersion="23.11.0.0" />
62-
<publisherPolicy apply="no" />
63-
</dependentAssembly>
6459
<dependentAssembly>
6560
<assemblyIdentity name="Aspose.CAD" publicKeyToken="716fcc553a201e56" culture="neutral" />
66-
<bindingRedirect oldVersion="0.0.0.0-23.8.0.0" newVersion="23.8.0.0" />
61+
<bindingRedirect oldVersion="0.0.0.0-23.10.0.0" newVersion="23.10.0.0" />
6762
<publisherPolicy apply="no" />
6863
</dependentAssembly>
6964
<dependentAssembly>
@@ -88,12 +83,12 @@
8883
</dependentAssembly>
8984
<dependentAssembly>
9085
<assemblyIdentity name="Aspose.Note" publicKeyToken="716fcc553a201e56" culture="neutral" />
91-
<bindingRedirect oldVersion="0.0.0.0-23.3.0.0" newVersion="23.3.0.0" />
86+
<bindingRedirect oldVersion="0.0.0.0-23.10.0.0" newVersion="23.10.0.0" />
9287
<publisherPolicy apply="no" />
9388
</dependentAssembly>
9489
<dependentAssembly>
9590
<assemblyIdentity name="Aspose.PDF" publicKeyToken="716fcc553a201e56" culture="neutral" />
96-
<bindingRedirect oldVersion="0.0.0.0-23.12.0.0" newVersion="23.12.0.0" />
91+
<bindingRedirect oldVersion="0.0.0.0-24.1.0.0" newVersion="24.1.0.0" />
9792
<publisherPolicy apply="no" />
9893
</dependentAssembly>
9994
<dependentAssembly>
@@ -111,19 +106,24 @@
111106
<bindingRedirect oldVersion="0.0.0.0-23.11.0.0" newVersion="23.11.0.0" />
112107
<publisherPolicy apply="no" />
113108
</dependentAssembly>
109+
<dependentAssembly>
110+
<assemblyIdentity name="Aspose.Words.Shaping.HarfBuzz" publicKeyToken="716fcc553a201e56" culture="neutral" />
111+
<bindingRedirect oldVersion="0.0.0.0-23.11.0.0" newVersion="23.11.0.0" />
112+
<publisherPolicy apply="no" />
113+
</dependentAssembly>
114114
<dependentAssembly>
115115
<assemblyIdentity name="Aspose.Zip" publicKeyToken="716fcc553a201e56" culture="neutral" />
116116
<bindingRedirect oldVersion="0.0.0.0-23.10.0.0" newVersion="23.10.0.0" />
117117
<publisherPolicy apply="no" />
118118
</dependentAssembly>
119119
<dependentAssembly>
120120
<assemblyIdentity name="Aspose.PSD" publicKeyToken="716fcc553a201e56" culture="neutral" />
121-
<bindingRedirect oldVersion="0.0.0.0-23.7.0.0" newVersion="23.7.0.0" />
121+
<bindingRedirect oldVersion="0.0.0.0-22.7.0.0" newVersion="22.7.0.0" />
122122
<publisherPolicy apply="no" />
123123
</dependentAssembly>
124124
<dependentAssembly>
125125
<assemblyIdentity name="Aspose.BarCode" publicKeyToken="716fcc553a201e56" culture="neutral" />
126-
<bindingRedirect oldVersion="0.0.0.0-23.9.0.0" newVersion="23.9.0.0" />
126+
<bindingRedirect oldVersion="0.0.0.0-21.10.0.0" newVersion="21.10.0.0" />
127127
<publisherPolicy apply="no" />
128128
</dependentAssembly>
129129
</assemblyBinding>

Demos/ASP.NET MVC/src/packages.config

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="AsyncKeyedLock" version="6.2.1" targetFramework="net48" />
4-
<package id="GroupDocs.Viewer" version="23.12.0" targetFramework="net48" />
4+
<package id="GroupDocs.Viewer" version="24.1.1" targetFramework="net48" />
55
<package id="Microsoft.AspNet.Cors" version="5.2.9" targetFramework="net48" />
66
<package id="Microsoft.AspNet.Mvc" version="5.2.9" targetFramework="net48" />
77
<package id="Microsoft.AspNet.Razor" version="3.2.9" targetFramework="net48" />
@@ -11,11 +11,19 @@
1111
<package id="Microsoft.AspNet.WebApi.Cors" version="5.2.9" targetFramework="net48" />
1212
<package id="Microsoft.AspNet.WebApi.WebHost" version="5.2.9" targetFramework="net48" />
1313
<package id="Microsoft.AspNet.WebPages" version="3.2.9" targetFramework="net48" />
14+
<package id="Microsoft.Bcl.AsyncInterfaces" version="6.0.0" targetFramework="net48" />
1415
<package id="Microsoft.CodeDom.Providers.DotNetCompilerPlatform" version="3.6.0" targetFramework="net48" />
1516
<package id="Microsoft.Web.Infrastructure" version="2.0.0" targetFramework="net48" />
1617
<package id="Newtonsoft.Json" version="13.0.3" targetFramework="net48" />
18+
<package id="System.Buffers" version="4.5.1" targetFramework="net48" />
19+
<package id="System.Memory" version="4.5.4" targetFramework="net48" />
20+
<package id="System.Numerics.Vectors" version="4.5.0" targetFramework="net48" />
1721
<package id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" targetFramework="net48" />
22+
<package id="System.Text.Encoding.CodePages" version="6.0.0" targetFramework="net48" />
23+
<package id="System.Text.Encodings.Web" version="6.0.0" targetFramework="net48" />
24+
<package id="System.Text.Json" version="6.0.0" targetFramework="net48" />
1825
<package id="System.Threading.Tasks.Extensions" version="4.5.4" targetFramework="net48" />
26+
<package id="System.ValueTuple" version="4.5.0" targetFramework="net48" />
1927
<package id="Unity" version="5.11.10" targetFramework="net48" />
2028
<package id="Unity.WebAPI" version="5.4.0" targetFramework="net48" />
2129
</packages>

Demos/ASP.NET Web Forms/src/Core/Viewers/Extensions/ViewOptionsExtensions.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ private static void CopyHtmlViewOptions(this HtmlViewOptions dst, HtmlViewOption
6161

6262
private static void CopyPdfViewOptions(this PdfViewOptions dst, PdfViewOptions src)
6363
{
64-
dst.JpgQuality = src.JpgQuality;
6564
dst.Security = src.Security;
6665
dst.ImageMaxWidth = src.ImageMaxWidth;
6766
dst.ImageMaxHeight = src.ImageMaxHeight;

Demos/ASP.NET Web Forms/src/GroupDocs.Viewer.AspNetWebForms.csproj

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,11 @@
5050
<Reference Include="AsyncKeyedLock, Version=6.2.1.0, Culture=neutral, PublicKeyToken=c6dde91429ba0f2f, processorArchitecture=MSIL">
5151
<HintPath>packages\AsyncKeyedLock.6.2.1\lib\netstandard2.0\AsyncKeyedLock.dll</HintPath>
5252
</Reference>
53-
<Reference Include="GroupDocs.Viewer, Version=23.10.0.0, Culture=neutral, PublicKeyToken=716fcc553a201e56, processorArchitecture=MSIL">
54-
<HintPath>packages\GroupDocs.Viewer.23.10.0\lib\net462\GroupDocs.Viewer.dll</HintPath>
53+
<Reference Include="GroupDocs.Viewer, Version=24.1.1.0, Culture=neutral, PublicKeyToken=716fcc553a201e56, processorArchitecture=MSIL">
54+
<HintPath>packages\GroupDocs.Viewer.24.1.1\lib\net462\GroupDocs.Viewer.dll</HintPath>
55+
</Reference>
56+
<Reference Include="Microsoft.Bcl.AsyncInterfaces, Version=6.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
57+
<HintPath>packages\Microsoft.Bcl.AsyncInterfaces.6.0.0\lib\net461\Microsoft.Bcl.AsyncInterfaces.dll</HintPath>
5558
</Reference>
5659
<Reference Include="Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
5760
<HintPath>packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.4.1.0\lib\net472\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll</HintPath>
@@ -60,19 +63,40 @@
6063
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
6164
<HintPath>packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
6265
</Reference>
66+
<Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
67+
<HintPath>packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll</HintPath>
68+
</Reference>
6369
<Reference Include="System.ComponentModel.DataAnnotations" />
6470
<Reference Include="System" />
6571
<Reference Include="System.Data" />
6672
<Reference Include="System.Core" />
6773
<Reference Include="System.Data.DataSetExtensions" />
74+
<Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
75+
<HintPath>packages\System.Memory.4.5.4\lib\net461\System.Memory.dll</HintPath>
76+
</Reference>
6877
<Reference Include="System.Net.Http" />
6978
<Reference Include="System.Numerics" />
79+
<Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
80+
<HintPath>packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
81+
</Reference>
7082
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
7183
<HintPath>packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\net461\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
7284
</Reference>
85+
<Reference Include="System.Text.Encoding.CodePages, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
86+
<HintPath>packages\System.Text.Encoding.CodePages.6.0.0\lib\net461\System.Text.Encoding.CodePages.dll</HintPath>
87+
</Reference>
88+
<Reference Include="System.Text.Encodings.Web, Version=6.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
89+
<HintPath>packages\System.Text.Encodings.Web.6.0.0\lib\net461\System.Text.Encodings.Web.dll</HintPath>
90+
</Reference>
91+
<Reference Include="System.Text.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
92+
<HintPath>packages\System.Text.Json.6.0.0\lib\net461\System.Text.Json.dll</HintPath>
93+
</Reference>
7394
<Reference Include="System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
7495
<HintPath>packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll</HintPath>
7596
</Reference>
97+
<Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
98+
<HintPath>packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll</HintPath>
99+
</Reference>
76100
<Reference Include="System.Web.Cors, Version=5.2.9.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
77101
<HintPath>packages\Microsoft.AspNet.Cors.5.2.9\lib\net45\System.Web.Cors.dll</HintPath>
78102
</Reference>
@@ -277,5 +301,7 @@
277301
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
278302
</PropertyGroup>
279303
<Error Condition="!Exists('packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.4.1.0\build\net472\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.4.1.0\build\net472\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.targets'))" />
304+
<Error Condition="!Exists('packages\System.Text.Json.6.0.0\build\System.Text.Json.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\System.Text.Json.6.0.0\build\System.Text.Json.targets'))" />
280305
</Target>
306+
<Import Project="packages\System.Text.Json.6.0.0\build\System.Text.Json.targets" Condition="Exists('packages\System.Text.Json.6.0.0\build\System.Text.Json.targets')" />
281307
</Project>

0 commit comments

Comments
 (0)