Imported Upstream version 6.4.0.161
Former-commit-id: 21a42411cb2ec96075d9966b1ad8ccb34ff9b87c
This commit is contained in:
parent
75359d80fe
commit
7cf9ab2574
@ -1 +1 @@
|
||||
ea71a3011a5bc17919912f79ba0b43a78e90dc46
|
||||
3775be9539849d1d8fe1bb59578a3adaf60af8f2
|
@ -1 +1 @@
|
||||
4ff63b001b91e85857354dbd41ddd6d142ef0881
|
||||
3f393279c2b9f8af3a3d9ab21d3febd3472c0af1
|
@ -435,7 +435,9 @@ namespace System.IO
|
||||
// The base FileSystemWatcher does a match check against the relative path before combining with
|
||||
// the root dir; however, null is special cased to signify the root dir, so check if we should use that.
|
||||
ReadOnlySpan<char> relativePath = ReadOnlySpan<char>.Empty;
|
||||
if (!path.Equals(_fullDirectory, StringComparison.OrdinalIgnoreCase))
|
||||
if (!path.Equals(_fullDirectory, StringComparison.OrdinalIgnoreCase)
|
||||
&& path.Length >= _fullDirectory.Length
|
||||
&& _fullDirectory.AsSpan().Equals(path.Slice(_fullDirectory.Length), StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
// Remove the root directory to get the relative path
|
||||
relativePath = path.Slice(_fullDirectory.Length);
|
||||
@ -479,9 +481,18 @@ namespace System.IO
|
||||
else
|
||||
{
|
||||
// Remove the base directory prefix and add the paired event to the list of
|
||||
// events to skip and notify the user of the rename
|
||||
ReadOnlySpan<char> newPathRelativeName = events[pairedId].Span.Slice(_fullDirectory.Length);
|
||||
watcher.NotifyRenameEventArgs(WatcherChangeTypes.Renamed, newPathRelativeName, relativePath);
|
||||
// events to skip and notify the user of the rename
|
||||
if (events[pairedId].Span.Length >= _fullDirectory.Length
|
||||
&& ((ReadOnlySpan<char>) events[pairedId].Span).Equals(_fullDirectory.AsSpan(0, events[pairedId].Span.Length), StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
ReadOnlySpan<char> newPathRelativeName = events[pairedId].Span.Slice(_fullDirectory.Length);
|
||||
watcher.NotifyRenameEventArgs(WatcherChangeTypes.Renamed, newPathRelativeName, relativePath);
|
||||
}
|
||||
else
|
||||
{
|
||||
//if the base directory prefix isn't there, just use the full absolute path
|
||||
watcher.NotifyRenameEventArgs(WatcherChangeTypes.Renamed, events[pairedId].Span, relativePath);
|
||||
}
|
||||
|
||||
// Create a new list, if necessary, and add the event
|
||||
if (handledRenameEvents == null)
|
||||
|
@ -1 +0,0 @@
|
||||
b22c1001f96026227bfeb8765492c71397b2a250
|
Binary file not shown.
@ -1 +0,0 @@
|
||||
38948683e151f6009580f20359e51270510c49d5
|
@ -1 +0,0 @@
|
||||
5cb9029bf1147f755252018acf04c7ea947b214a
|
@ -1 +0,0 @@
|
||||
b06cf34859cb7c700dfd8f87f8038fd2efbfa21c
|
@ -1 +0,0 @@
|
||||
7696c03b218eb7d3c30c858963d98687f17f8d9e
|
Binary file not shown.
@ -1 +0,0 @@
|
||||
2d54316954f4200997856156289df2e6115d51e0
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
aeff3ad988e25fea8dc3561277a0ceab064f8fc7
|
||||
b22c1001f96026227bfeb8765492c71397b2a250
|
Binary file not shown.
@ -1 +1 @@
|
||||
76c7d6d06756c34ea550afe61ca4e5db8bda0fc3
|
||||
38948683e151f6009580f20359e51270510c49d5
|
@ -1 +1 @@
|
||||
06b44b45a10fea51ee8e8b72b9f74e3e370f7465
|
||||
5cb9029bf1147f755252018acf04c7ea947b214a
|
@ -1 +1 @@
|
||||
3cefc59b2da1b7487c9d7c8a5e2ad00a082e6705
|
||||
b06cf34859cb7c700dfd8f87f8038fd2efbfa21c
|
@ -1 +1 @@
|
||||
27baccadd0abecaa5f45f58d9b5c505ac4f85963
|
||||
7696c03b218eb7d3c30c858963d98687f17f8d9e
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
||||
c85c1a433cb7aae27da42eb88ac1c2df7a109bd1
|
@ -3,6 +3,12 @@
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="Microsoft.Managed.Core.targets"/>
|
||||
|
||||
<PropertyGroup Condition="('$(TargetFrameworkIdentifier)' != '.NETCoreApp' OR '$(TargetFrameworkVersion)' != 'v3.0') AND
|
||||
('$(TargetFrameworkIdentifier)' != '.NETStandard' OR '$(TargetFrameworkVersion)' != 'v2.1')">
|
||||
<MaxSupportedLangVersion Condition="'$(MaxSupportedLangVersion)' == ''">7.3</MaxSupportedLangVersion>
|
||||
<LangVersion Condition="'$(LangVersion)' == ''">$(MaxSupportedLangVersion)</LangVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<Target Name="CoreCompile"
|
||||
Inputs="$(MSBuildAllProjects);
|
||||
@(Compile);
|
||||
@ -18,7 +24,8 @@
|
||||
@(CustomAdditionalCompileInputs);
|
||||
$(ResolvedCodeAnalysisRuleSet);
|
||||
@(AdditionalFiles);
|
||||
@(EmbeddedFiles)"
|
||||
@(EmbeddedFiles);
|
||||
@(EditorConfigFiles)"
|
||||
Outputs="@(DocFileItem);
|
||||
@(IntermediateAssembly);
|
||||
@(IntermediateRefAssembly);
|
||||
@ -48,18 +55,13 @@
|
||||
<PdbFile Condition="'$(PdbFile)' == '' AND '$(OutputType)' == 'winmdobj' AND '$(_DebugSymbolsProduced)' == 'true'">$(IntermediateOutputPath)$(TargetName).compile.pdb</PdbFile>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<LangVersion Condition="'$(LangVersion)' == '' AND
|
||||
(('$(TargetFrameworkIdentifier)' == '.NETCoreApp' AND '$(TargetFrameworkVersion)' == 'v3.0') OR
|
||||
('$(TargetFrameworkIdentifier)' == '.NETStandard' AND '$(TargetFrameworkVersion)' == 'v2.1'))">preview</LangVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<!-- Condition is to filter out the _CoreCompileResourceInputs so that it doesn't pass in culture resources to the compiler -->
|
||||
<Csc Condition="'%(_CoreCompileResourceInputs.WithCulture)' != 'true'"
|
||||
AdditionalLibPaths="$(AdditionalLibPaths)"
|
||||
AddModules="@(AddModules)"
|
||||
AdditionalFiles="@(AdditionalFiles)"
|
||||
AllowUnsafeBlocks="$(AllowUnsafeBlocks)"
|
||||
AnalyzerConfigFiles="@(EditorConfigFiles)"
|
||||
Analyzers="@(Analyzer)"
|
||||
ApplicationConfiguration="$(AppConfigForCompiler)"
|
||||
BaseAddress="$(BaseAddress)"
|
||||
@ -95,7 +97,7 @@
|
||||
NoLogo="$(NoLogo)"
|
||||
NoStandardLib="$(NoCompilerStandardLib)"
|
||||
NoWin32Manifest="$(NoWin32Manifest)"
|
||||
NullableContextOptions="$(NullableContextOptions)"
|
||||
Nullable="$(Nullable)"
|
||||
Optimize="$(Optimize)"
|
||||
Deterministic="$(Deterministic)"
|
||||
PublicSign="$(PublicSign)"
|
BIN
external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll
vendored
Normal file
BIN
external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll
vendored
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
61859b1a96faac28da1b9e5a95dd5790ab50f09a
|
@ -0,0 +1 @@
|
||||
5451f4a3afeedd79580efc5eac60ea551ddcff4c
|
@ -0,0 +1 @@
|
||||
41a52f93b838fbce895200baa1a4614155d8efbb
|
@ -0,0 +1 @@
|
||||
3c095e9607efe47e69fbe71066eb7e45696cd22a
|
@ -50,6 +50,18 @@
|
||||
</PropertyGroup>
|
||||
</Target>
|
||||
|
||||
<!--
|
||||
========================
|
||||
.editorconfig Support
|
||||
========================
|
||||
|
||||
The discovery of .editorconfig files depends on MSBuild features only available in version 16.1 and later. To avoid evaluation errors when
|
||||
running under earlier versions of MSBuild we place the relevant properties and imports in a separate .targets file.
|
||||
|
||||
TODO: Inline the import when we no longer need to support earlier versions of MSBuild.
|
||||
-->
|
||||
<Import Project="Microsoft.Managed.EditorConfig.targets" Condition="$(MSBuildVersion) >= 16.1.0" />
|
||||
|
||||
<!--
|
||||
========================
|
||||
DeterministicSourcePaths
|
13
external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/Microsoft.Managed.EditorConfig.targets
vendored
Normal file
13
external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/Microsoft.Managed.EditorConfig.targets
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
|
||||
<ItemGroup>
|
||||
<_AllDirectoriesAbove Include="@(Compile->GetPathsOfAllDirectoriesAbove())" Condition="'$(DiscoverEditorConfigFiles)' != 'false'" />
|
||||
<!-- Work around a GetPathsOfAllDirectoriesAbove() bug where it can return multiple equivalent paths when the
|
||||
compilation includes linked files with relative paths - https://github.com/microsoft/msbuild/issues/4392 -->
|
||||
<PotentialEditorConfigFiles Include="@(_AllDirectoriesAbove->'%(FullPath)'->Distinct()->Combine('.editorconfig'))" Condition="'$(DiscoverEditorConfigFiles)' != 'false'" />
|
||||
<EditorConfigFiles Include="@(PotentialEditorConfigFiles->Exists())" Condition="'$(DiscoverEditorConfigFiles)' != 'false'" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
@ -18,7 +18,8 @@
|
||||
@(CustomAdditionalCompileInputs);
|
||||
$(ResolvedCodeAnalysisRuleSet);
|
||||
@(AdditionalFiles);
|
||||
@(EmbeddedFiles)"
|
||||
@(EmbeddedFiles);
|
||||
@(EditorConfigFiles)"
|
||||
Outputs="@(DocFileItem);
|
||||
@(IntermediateAssembly);
|
||||
@(IntermediateRefAssembly);
|
||||
@ -42,6 +43,7 @@
|
||||
AdditionalLibPaths="$(AdditionalLibPaths)"
|
||||
AddModules="@(AddModules)"
|
||||
AdditionalFiles="@(AdditionalFiles)"
|
||||
AnalyzerConfigFiles="@(EditorConfigFiles)"
|
||||
Analyzers="@(Analyzer)"
|
||||
BaseAddress="$(BaseAddress)"
|
||||
ChecksumAlgorithm="$(ChecksumAlgorithm)"
|
||||
@ -131,4 +133,4 @@
|
||||
|
||||
<CallTarget Targets="$(TargetsTriggeredByCompilation)" Condition="'$(TargetsTriggeredByCompilation)' != ''" />
|
||||
</Target>
|
||||
</Project>
|
||||
</Project>
|
0
external/roslyn-binaries/Microsoft.Net.Compilers/3.1.0-release/System.Buffers.dll → external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/System.Buffers.dll
vendored
Executable file → Normal file
0
external/roslyn-binaries/Microsoft.Net.Compilers/3.1.0-release/System.Buffers.dll → external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/System.Buffers.dll
vendored
Executable file → Normal file
1
external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/System.Memory.dll.REMOVED.git-id
vendored
Normal file
1
external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/System.Memory.dll.REMOVED.git-id
vendored
Normal file
@ -0,0 +1 @@
|
||||
bdfc501e9647719549793297acb072d33067d4e5
|
Binary file not shown.
BIN
external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/VBCSCompiler.exe
vendored
Normal file
BIN
external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/VBCSCompiler.exe
vendored
Normal file
Binary file not shown.
@ -10,19 +10,19 @@
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Microsoft.CodeAnalysis.CSharp" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.1.0.0" newVersion="3.1.0.0" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Microsoft.CodeAnalysis" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.1.0.0" newVersion="3.1.0.0" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Microsoft.CodeAnalysis.VisualBasic" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.1.0.0" newVersion="3.1.0.0" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
@ -40,7 +40,7 @@
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
@ -70,7 +70,7 @@
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
BIN
external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/csc.exe
vendored
Normal file
BIN
external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/csc.exe
vendored
Normal file
Binary file not shown.
8
external/roslyn-binaries/Microsoft.Net.Compilers/3.1.0-release/csc.exe.config → external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/csc.exe.config
vendored
Executable file → Normal file
8
external/roslyn-binaries/Microsoft.Net.Compilers/3.1.0-release/csc.exe.config → external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/csc.exe.config
vendored
Executable file → Normal file
@ -10,13 +10,13 @@
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Microsoft.CodeAnalysis.CSharp" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.1.0.0" newVersion="3.1.0.0" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Microsoft.CodeAnalysis" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.1.0.0" newVersion="3.1.0.0" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
@ -34,7 +34,7 @@
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
@ -64,7 +64,7 @@
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
0
external/roslyn-binaries/Microsoft.Net.Compilers/3.1.0-release/csc.rsp → external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/csc.rsp
vendored
Executable file → Normal file
0
external/roslyn-binaries/Microsoft.Net.Compilers/3.1.0-release/csc.rsp → external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/csc.rsp
vendored
Executable file → Normal file
BIN
external/roslyn-binaries/Microsoft.Net.Compilers/3.1.0-release/csi.exe → external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/csi.exe
vendored
Executable file → Normal file
BIN
external/roslyn-binaries/Microsoft.Net.Compilers/3.1.0-release/csi.exe → external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/csi.exe
vendored
Executable file → Normal file
Binary file not shown.
@ -8,25 +8,25 @@
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Microsoft.CodeAnalysis.CSharp" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.1.0.0" newVersion="3.1.0.0" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Microsoft.CodeAnalysis.CSharp.Scripting" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.1.0.0" newVersion="3.1.0.0" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Microsoft.CodeAnalysis" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.1.0.0" newVersion="3.1.0.0" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Microsoft.CodeAnalysis.Scripting" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.1.0.0" newVersion="3.1.0.0" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
@ -44,7 +44,7 @@
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
@ -74,7 +74,7 @@
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
2
external/roslyn-binaries/Microsoft.Net.Compilers/3.1.0-release/csi.rsp → external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/csi.rsp
vendored
Executable file → Normal file
2
external/roslyn-binaries/Microsoft.Net.Compilers/3.1.0-release/csi.rsp → external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/csi.rsp
vendored
Executable file → Normal file
@ -12,4 +12,4 @@
|
||||
/u:System.Linq
|
||||
/u:System.Linq.Expressions
|
||||
/u:System.Text
|
||||
/u:System.Threading.Tasks
|
||||
/u:System.Threading.Tasks
|
BIN
external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/vbc.exe
vendored
Normal file
BIN
external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/vbc.exe
vendored
Normal file
Binary file not shown.
8
external/roslyn-binaries/Microsoft.Net.Compilers/3.1.0-release/vbc.exe.config → external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/vbc.exe.config
vendored
Executable file → Normal file
8
external/roslyn-binaries/Microsoft.Net.Compilers/3.1.0-release/vbc.exe.config → external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/vbc.exe.config
vendored
Executable file → Normal file
@ -10,13 +10,13 @@
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Microsoft.CodeAnalysis" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.1.0.0" newVersion="3.1.0.0" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Microsoft.CodeAnalysis.VisualBasic" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.1.0.0" newVersion="3.1.0.0" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
@ -34,7 +34,7 @@
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
@ -64,7 +64,7 @@
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
0
external/roslyn-binaries/Microsoft.Net.Compilers/3.1.0-release/vbc.rsp → external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/vbc.rsp
vendored
Executable file → Normal file
0
external/roslyn-binaries/Microsoft.Net.Compilers/3.1.0-release/vbc.rsp → external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/vbc.rsp
vendored
Executable file → Normal file
@ -41,7 +41,7 @@ static partial class Consts
|
||||
// Use these assembly version constants to make code more maintainable.
|
||||
//
|
||||
|
||||
public const string MonoVersion = "6.4.0.159";
|
||||
public const string MonoVersion = "6.4.0.161";
|
||||
public const string MonoCompany = "Mono development team";
|
||||
public const string MonoProduct = "Mono Common Language Infrastructure";
|
||||
public const string MonoCopyright = "(c) Various Mono authors";
|
||||
|
@ -1 +1 @@
|
||||
b6a2f5107e24d506b104067c993b7c8328f7d616
|
||||
9193f9f072398592502b824d465e6b14488ddc4f
|
@ -1 +1 @@
|
||||
458539943d85c5779812f36f8951cbe038dff6ed
|
||||
e8ef30d21401b581bb9756eda591284f162d3ad1
|
@ -1 +1 @@
|
||||
c8558d1819748e39e84858f323c3d370729d7457
|
||||
237be58c586c3971806dd710486938770df744e5
|
@ -1 +1 @@
|
||||
e037f75eb5fd4aa1518477b0e3ce4edff13aeb57
|
||||
37b5e9250c5a4c35dd7131a40d72b21693e99ce3
|
@ -1 +1 @@
|
||||
45aa9f986afd72991e339803769f9182c6d4caa9
|
||||
13faa021c64c9298ca2cffa76e0ffafe7301aebf
|
@ -1 +1 @@
|
||||
28727667395f42082079eeaf78e36c190e751534
|
||||
72b3cf37364a089c1451dbb49f46502a4db3be32
|
@ -1 +1 @@
|
||||
708404d19b644f661a3a457ce4b935f08d2ca2b8
|
||||
20df8c42d768a08fd418bcd2f4cb8b18cdc0c758
|
@ -1 +1 @@
|
||||
5e848061c549e497176bc58eb68c0885091733bb
|
||||
5e9053da5f69f969e75a3a8c05a6fe3bd1dc1d5e
|
@ -1 +1 @@
|
||||
a189cc4109fd07a86386331c219a885dd499bb40
|
||||
f3eadc777d7ab39133c26a6be208bf8076a97ce1
|
@ -1 +1 @@
|
||||
94048178ada4511b0832af2888f4141c560253e6
|
||||
0224456dda5264f488172eab6c1b36f09e0b7df8
|
@ -1 +1 @@
|
||||
6adf0f67b3d0103bbf05c10040bed12a3432bc5b
|
||||
db1ec4b36230f0863e94d26d8c36e28e6134adfc
|
@ -1 +1 @@
|
||||
b6a2f5107e24d506b104067c993b7c8328f7d616
|
||||
9193f9f072398592502b824d465e6b14488ddc4f
|
@ -1 +1 @@
|
||||
458539943d85c5779812f36f8951cbe038dff6ed
|
||||
e8ef30d21401b581bb9756eda591284f162d3ad1
|
@ -1 +1 @@
|
||||
c8558d1819748e39e84858f323c3d370729d7457
|
||||
237be58c586c3971806dd710486938770df744e5
|
@ -1 +1 @@
|
||||
e037f75eb5fd4aa1518477b0e3ce4edff13aeb57
|
||||
37b5e9250c5a4c35dd7131a40d72b21693e99ce3
|
@ -1 +1 @@
|
||||
45aa9f986afd72991e339803769f9182c6d4caa9
|
||||
13faa021c64c9298ca2cffa76e0ffafe7301aebf
|
@ -1 +1 @@
|
||||
28727667395f42082079eeaf78e36c190e751534
|
||||
72b3cf37364a089c1451dbb49f46502a4db3be32
|
@ -1 +1 @@
|
||||
708404d19b644f661a3a457ce4b935f08d2ca2b8
|
||||
20df8c42d768a08fd418bcd2f4cb8b18cdc0c758
|
@ -1 +1 @@
|
||||
5e848061c549e497176bc58eb68c0885091733bb
|
||||
5e9053da5f69f969e75a3a8c05a6fe3bd1dc1d5e
|
@ -1 +1 @@
|
||||
a189cc4109fd07a86386331c219a885dd499bb40
|
||||
f3eadc777d7ab39133c26a6be208bf8076a97ce1
|
@ -1 +1 @@
|
||||
94048178ada4511b0832af2888f4141c560253e6
|
||||
0224456dda5264f488172eab6c1b36f09e0b7df8
|
@ -1 +1 @@
|
||||
c1579843329c499ef1c8d59d72b6c8fc97584ad9
|
||||
8da34f24d2f33ea711457f4e781765a26e8a557f
|
@ -1 +1 @@
|
||||
6adf0f67b3d0103bbf05c10040bed12a3432bc5b
|
||||
db1ec4b36230f0863e94d26d8c36e28e6134adfc
|
@ -1 +1 @@
|
||||
b6a2f5107e24d506b104067c993b7c8328f7d616
|
||||
9193f9f072398592502b824d465e6b14488ddc4f
|
@ -1 +1 @@
|
||||
458539943d85c5779812f36f8951cbe038dff6ed
|
||||
e8ef30d21401b581bb9756eda591284f162d3ad1
|
@ -1 +1 @@
|
||||
c8558d1819748e39e84858f323c3d370729d7457
|
||||
237be58c586c3971806dd710486938770df744e5
|
@ -1 +1 @@
|
||||
e037f75eb5fd4aa1518477b0e3ce4edff13aeb57
|
||||
37b5e9250c5a4c35dd7131a40d72b21693e99ce3
|
@ -1 +1 @@
|
||||
45aa9f986afd72991e339803769f9182c6d4caa9
|
||||
13faa021c64c9298ca2cffa76e0ffafe7301aebf
|
@ -1 +1 @@
|
||||
28727667395f42082079eeaf78e36c190e751534
|
||||
72b3cf37364a089c1451dbb49f46502a4db3be32
|
@ -1 +1 @@
|
||||
708404d19b644f661a3a457ce4b935f08d2ca2b8
|
||||
20df8c42d768a08fd418bcd2f4cb8b18cdc0c758
|
@ -1 +1 @@
|
||||
5e848061c549e497176bc58eb68c0885091733bb
|
||||
5e9053da5f69f969e75a3a8c05a6fe3bd1dc1d5e
|
@ -1 +1 @@
|
||||
a189cc4109fd07a86386331c219a885dd499bb40
|
||||
f3eadc777d7ab39133c26a6be208bf8076a97ce1
|
@ -1 +1 @@
|
||||
94048178ada4511b0832af2888f4141c560253e6
|
||||
0224456dda5264f488172eab6c1b36f09e0b7df8
|
@ -1 +1 @@
|
||||
c1579843329c499ef1c8d59d72b6c8fc97584ad9
|
||||
8da34f24d2f33ea711457f4e781765a26e8a557f
|
@ -1 +1 @@
|
||||
6adf0f67b3d0103bbf05c10040bed12a3432bc5b
|
||||
db1ec4b36230f0863e94d26d8c36e28e6134adfc
|
@ -1 +1 @@
|
||||
b6a2f5107e24d506b104067c993b7c8328f7d616
|
||||
9193f9f072398592502b824d465e6b14488ddc4f
|
@ -1 +1 @@
|
||||
458539943d85c5779812f36f8951cbe038dff6ed
|
||||
e8ef30d21401b581bb9756eda591284f162d3ad1
|
@ -1 +1 @@
|
||||
c8558d1819748e39e84858f323c3d370729d7457
|
||||
237be58c586c3971806dd710486938770df744e5
|
@ -1 +1 @@
|
||||
d3166b7e26518094416fb789942df01cc9f094a1
|
||||
51f777821ede98d25d8c51263b0dbe4d3a4ce1f8
|
@ -1 +1 @@
|
||||
45aa9f986afd72991e339803769f9182c6d4caa9
|
||||
13faa021c64c9298ca2cffa76e0ffafe7301aebf
|
@ -1 +1 @@
|
||||
28727667395f42082079eeaf78e36c190e751534
|
||||
72b3cf37364a089c1451dbb49f46502a4db3be32
|
@ -1 +1 @@
|
||||
708404d19b644f661a3a457ce4b935f08d2ca2b8
|
||||
20df8c42d768a08fd418bcd2f4cb8b18cdc0c758
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user