Skip to content

Commit

Permalink
Merge pull request #765 from Cysharp/feature/ChatApp-PreferNetStandard
Browse files Browse the repository at this point in the history
Use netstandard2.x instead of net46x.
  • Loading branch information
mayuki authored Apr 18, 2024
2 parents ddd2631 + 755a166 commit da3b2db
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions samples/ChatApp/ChatApp.Unity/Assets/packages.config
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Grpc.Core.Api" version="2.61.0" />
<package id="Grpc.Net.Client" version="2.61.0" manuallyInstalled="true" />
<package id="Grpc.Net.Common" version="2.61.0" />
<package id="Microsoft.Extensions.Logging.Abstractions" version="6.0.0" />
<package id="System.Diagnostics.DiagnosticSource" version="6.0.1" />
<package id="System.IO.Pipelines" version="8.0.0" manuallyInstalled="true" targetFramework="netstandard2.1" />
<package id="Grpc.Core.Api" version="2.61.0" targetFramework="netstandard2.1" />
<package id="Grpc.Net.Client" version="2.61.0" manuallyInstalled="true" targetFramework="netstandard2.1" />
<package id="Grpc.Net.Common" version="2.61.0" targetFramework="netstandard2.1" />
<package id="Microsoft.Extensions.Logging.Abstractions" version="6.0.0" targetFramework="netstandard2.0" />
<package id="System.Diagnostics.DiagnosticSource" version="6.0.1" targetFramework="netstandard2.0" />
<package id="System.IO.Pipelines" version="8.0.0" manuallyInstalled="true" targetFramework="netstandard2.0" />
</packages>

0 comments on commit da3b2db

Please sign in to comment.