1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-11 02:13:38 +09:00

[main] Update dependencies from dotnet/roslyn (#83301)

* Update dependencies from https://github.com/dotnet/roslyn build 20230310.6

Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset
 From Version 4.6.0-3.23160.1 -> To Version 4.6.0-3.23160.6

* Update dependencies from https://github.com/dotnet/roslyn build 20230311.1

Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset
 From Version 4.6.0-3.23160.1 -> To Version 4.6.0-3.23161.1

* Update dependencies from https://github.com/dotnet/roslyn build 20230313.3

Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset
 From Version 4.6.0-3.23160.1 -> To Version 4.6.0-3.23163.3

* Update dependencies from https://github.com/dotnet/roslyn build 20230314.6

Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset
 From Version 4.6.0-3.23160.1 -> To Version 4.6.0-3.23164.6

* Update dependencies from https://github.com/dotnet/roslyn build 20230320.16

Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset
 From Version 4.6.0-3.23160.1 -> To Version 4.6.0-3.23170.16

* Update dependencies from https://github.com/dotnet/roslyn build 20230321.17

Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset
 From Version 4.6.0-3.23160.1 -> To Version 4.6.0-3.23171.17

* Update dependencies from https://github.com/dotnet/roslyn build 20230322.9

Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset
 From Version 4.6.0-3.23160.1 -> To Version 4.6.0-3.23172.9

* Update dependencies from https://github.com/dotnet/roslyn build 20230324.2

Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset
 From Version 4.6.0-3.23160.1 -> To Version 4.6.0-3.23174.2

* Add unsafe

* Update dependencies from https://github.com/dotnet/roslyn build 20230324.3

Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset
 From Version 4.6.0-3.23160.1 -> To Version 4.6.0-3.23174.3

* Update dependencies from https://github.com/dotnet/roslyn build 20230325.1

Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset
 From Version 4.6.0-3.23160.1 -> To Version 4.6.0-3.23175.1

---------

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: Larry Ewing <lewing@microsoft.com>
This commit is contained in:
dotnet-maestro[bot] 2023-03-27 10:21:55 -05:00 committed by GitHub
parent 5b47cd7520
commit ea199096bd
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 10 deletions

View file

@ -316,17 +316,17 @@
<Uri>https://github.com/dotnet/runtime-assets</Uri>
<Sha>5998ff33d827ce24c97795147bc2df1c547ce9a1</Sha>
</Dependency>
<Dependency Name="Microsoft.Net.Compilers.Toolset" Version="4.6.0-3.23160.1">
<Dependency Name="Microsoft.Net.Compilers.Toolset" Version="4.6.0-3.23175.1">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>e69cd047fdb922554b8125d793e835616360e96b</Sha>
<Sha>87b5be1d9314398c2db4029580281d62be71fdba</Sha>
</Dependency>
<Dependency Name="Microsoft.CodeAnalysis" Version="4.6.0-3.23160.1">
<Dependency Name="Microsoft.CodeAnalysis" Version="4.6.0-3.23175.1">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>e69cd047fdb922554b8125d793e835616360e96b</Sha>
<Sha>87b5be1d9314398c2db4029580281d62be71fdba</Sha>
</Dependency>
<Dependency Name="Microsoft.CodeAnalysis.CSharp" Version="4.6.0-3.23160.1">
<Dependency Name="Microsoft.CodeAnalysis.CSharp" Version="4.6.0-3.23175.1">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>e69cd047fdb922554b8125d793e835616360e96b</Sha>
<Sha>87b5be1d9314398c2db4029580281d62be71fdba</Sha>
</Dependency>
<Dependency Name="Microsoft.CodeAnalysis.Analyzers" Version="3.3.5-beta1.23172.1">
<Uri>https://github.com/dotnet/roslyn-analyzers</Uri>

View file

@ -40,9 +40,9 @@
Any tools that contribute to the design-time experience should use the MicrosoftCodeAnalysisVersion_LatestVS property above to ensure
they do not break the local dev experience.
-->
<MicrosoftCodeAnalysisCSharpVersion>4.6.0-3.23160.1</MicrosoftCodeAnalysisCSharpVersion>
<MicrosoftCodeAnalysisVersion>4.6.0-3.23160.1</MicrosoftCodeAnalysisVersion>
<MicrosoftNetCompilersToolsetVersion>4.6.0-3.23160.1</MicrosoftNetCompilersToolsetVersion>
<MicrosoftCodeAnalysisCSharpVersion>4.6.0-3.23175.1</MicrosoftCodeAnalysisCSharpVersion>
<MicrosoftCodeAnalysisVersion>4.6.0-3.23175.1</MicrosoftCodeAnalysisVersion>
<MicrosoftNetCompilersToolsetVersion>4.6.0-3.23175.1</MicrosoftNetCompilersToolsetVersion>
</PropertyGroup>
<!--
For source generator support we need to target multiple versions of Roslyn in order to be able to run on older versions of Roslyn.

View file

@ -6,7 +6,7 @@ using System.Reflection;
class Program
{
static int Main()
static unsafe int Main()
{
var baseClass = new BaseClass();
var derivedClass = new DerivedClass();