Imported Upstream version 6.4.0.198
Former-commit-id: f50ce77ce335da6ab5b5bf46a0e6a38aa599ee47
This commit is contained in:
parent
3871dbaeeb
commit
e4f7c9bcf1
@ -1 +1 @@
|
|||||||
8f9d105af4a9f68eed64521e407923df5dcd59d2
|
fd1b8031ff8b41243f129122c0ed6261c5af46f6
|
@ -1 +1 @@
|
|||||||
e1da4e425ca881ed9b3045f7c232af35f998c0b1
|
bb385e0b28d887340c81438e4a1718099c7721ae
|
@ -1 +1 @@
|
|||||||
6e6d55fa6d4563c2ddecff090b26326917348ee8
|
2f3a0a269516161cf0c1c068ede37d582066b993
|
@ -1,146 +1,146 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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. -->
|
<!-- 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 ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<Import Project="Microsoft.Managed.Core.targets"/>
|
<Import Project="Microsoft.Managed.Core.targets"/>
|
||||||
|
|
||||||
<PropertyGroup Condition="('$(TargetFrameworkIdentifier)' != '.NETCoreApp' OR '$(TargetFrameworkVersion)' != 'v3.0') AND
|
<PropertyGroup Condition="('$(TargetFrameworkIdentifier)' != '.NETCoreApp' OR '$(TargetFrameworkVersion)' != 'v3.0') AND
|
||||||
('$(TargetFrameworkIdentifier)' != '.NETStandard' OR '$(TargetFrameworkVersion)' != 'v2.1')">
|
('$(TargetFrameworkIdentifier)' != '.NETStandard' OR '$(TargetFrameworkVersion)' != 'v2.1')">
|
||||||
<MaxSupportedLangVersion Condition="'$(MaxSupportedLangVersion)' == ''">7.3</MaxSupportedLangVersion>
|
<MaxSupportedLangVersion Condition="'$(MaxSupportedLangVersion)' == ''">7.3</MaxSupportedLangVersion>
|
||||||
<LangVersion Condition="'$(LangVersion)' == ''">$(MaxSupportedLangVersion)</LangVersion>
|
<LangVersion Condition="'$(LangVersion)' == ''">$(MaxSupportedLangVersion)</LangVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<Target Name="CoreCompile"
|
<Target Name="CoreCompile"
|
||||||
Inputs="$(MSBuildAllProjects);
|
Inputs="$(MSBuildAllProjects);
|
||||||
@(Compile);
|
@(Compile);
|
||||||
@(_CoreCompileResourceInputs);
|
@(_CoreCompileResourceInputs);
|
||||||
$(ApplicationIcon);
|
$(ApplicationIcon);
|
||||||
$(AssemblyOriginatorKeyFile);
|
$(AssemblyOriginatorKeyFile);
|
||||||
@(ReferencePathWithRefAssemblies);
|
@(ReferencePathWithRefAssemblies);
|
||||||
@(CompiledLicenseFile);
|
@(CompiledLicenseFile);
|
||||||
@(LinkResource);
|
@(LinkResource);
|
||||||
@(EmbeddedDocumentation);
|
@(EmbeddedDocumentation);
|
||||||
$(Win32Resource);
|
$(Win32Resource);
|
||||||
$(Win32Manifest);
|
$(Win32Manifest);
|
||||||
@(CustomAdditionalCompileInputs);
|
@(CustomAdditionalCompileInputs);
|
||||||
$(ResolvedCodeAnalysisRuleSet);
|
$(ResolvedCodeAnalysisRuleSet);
|
||||||
@(AdditionalFiles);
|
@(AdditionalFiles);
|
||||||
@(EmbeddedFiles);
|
@(EmbeddedFiles);
|
||||||
@(EditorConfigFiles)"
|
@(EditorConfigFiles)"
|
||||||
Outputs="@(DocFileItem);
|
Outputs="@(DocFileItem);
|
||||||
@(IntermediateAssembly);
|
@(IntermediateAssembly);
|
||||||
@(IntermediateRefAssembly);
|
@(IntermediateRefAssembly);
|
||||||
@(_DebugSymbolsIntermediatePath);
|
@(_DebugSymbolsIntermediatePath);
|
||||||
$(NonExistentFile);
|
$(NonExistentFile);
|
||||||
@(CustomAdditionalCompileOutputs)"
|
@(CustomAdditionalCompileOutputs)"
|
||||||
Returns="@(CscCommandLineArgs)"
|
Returns="@(CscCommandLineArgs)"
|
||||||
DependsOnTargets="$(CoreCompileDependsOn);_BeforeVBCSCoreCompile">
|
DependsOnTargets="$(CoreCompileDependsOn);_BeforeVBCSCoreCompile">
|
||||||
<!-- These two compiler warnings are raised when a reference is bound to a different version
|
<!-- These two compiler warnings are raised when a reference is bound to a different version
|
||||||
than specified in the assembly reference version number. MSBuild raises the same warning in this case,
|
than specified in the assembly reference version number. MSBuild raises the same warning in this case,
|
||||||
so the compiler warning would be redundant. -->
|
so the compiler warning would be redundant. -->
|
||||||
<PropertyGroup Condition="('$(TargetFrameworkVersion)' != 'v1.0') and ('$(TargetFrameworkVersion)' != 'v1.1')">
|
<PropertyGroup Condition="('$(TargetFrameworkVersion)' != 'v1.0') and ('$(TargetFrameworkVersion)' != 'v1.1')">
|
||||||
<NoWarn>$(NoWarn);1701;1702</NoWarn>
|
<NoWarn>$(NoWarn);1701;1702</NoWarn>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<!-- To match historical behavior, when inside VS11+ disable the warning from csc.exe indicating that no sources were passed in-->
|
<!-- To match historical behavior, when inside VS11+ disable the warning from csc.exe indicating that no sources were passed in-->
|
||||||
<NoWarn Condition="'$(BuildingInsideVisualStudio)' == 'true' AND '$(VisualStudioVersion)' != '' AND '$(VisualStudioVersion)' > '10.0'">$(NoWarn);2008</NoWarn>
|
<NoWarn Condition="'$(BuildingInsideVisualStudio)' == 'true' AND '$(VisualStudioVersion)' != '' AND '$(VisualStudioVersion)' > '10.0'">$(NoWarn);2008</NoWarn>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<!-- If the user has specified AppConfigForCompiler, we'll use it. If they have not, but they set UseAppConfigForCompiler,
|
<!-- If the user has specified AppConfigForCompiler, we'll use it. If they have not, but they set UseAppConfigForCompiler,
|
||||||
then we'll use AppConfig -->
|
then we'll use AppConfig -->
|
||||||
<AppConfigForCompiler Condition="'$(AppConfigForCompiler)' == '' AND '$(UseAppConfigForCompiler)' == 'true'">$(AppConfig)</AppConfigForCompiler>
|
<AppConfigForCompiler Condition="'$(AppConfigForCompiler)' == '' AND '$(UseAppConfigForCompiler)' == 'true'">$(AppConfig)</AppConfigForCompiler>
|
||||||
|
|
||||||
<!-- If we are targeting winmdobj we want to specifically the pdbFile property since we do not want it to collide with the output of winmdexp-->
|
<!-- If we are targeting winmdobj we want to specifically the pdbFile property since we do not want it to collide with the output of winmdexp-->
|
||||||
<PdbFile Condition="'$(PdbFile)' == '' AND '$(OutputType)' == 'winmdobj' AND '$(_DebugSymbolsProduced)' == 'true'">$(IntermediateOutputPath)$(TargetName).compile.pdb</PdbFile>
|
<PdbFile Condition="'$(PdbFile)' == '' AND '$(OutputType)' == 'winmdobj' AND '$(_DebugSymbolsProduced)' == 'true'">$(IntermediateOutputPath)$(TargetName).compile.pdb</PdbFile>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- Condition is to filter out the _CoreCompileResourceInputs so that it doesn't pass in culture resources to the compiler -->
|
<!-- Condition is to filter out the _CoreCompileResourceInputs so that it doesn't pass in culture resources to the compiler -->
|
||||||
<Csc Condition="'%(_CoreCompileResourceInputs.WithCulture)' != 'true'"
|
<Csc Condition="'%(_CoreCompileResourceInputs.WithCulture)' != 'true'"
|
||||||
AdditionalLibPaths="$(AdditionalLibPaths)"
|
AdditionalLibPaths="$(AdditionalLibPaths)"
|
||||||
AddModules="@(AddModules)"
|
AddModules="@(AddModules)"
|
||||||
AdditionalFiles="@(AdditionalFiles)"
|
AdditionalFiles="@(AdditionalFiles)"
|
||||||
AllowUnsafeBlocks="$(AllowUnsafeBlocks)"
|
AllowUnsafeBlocks="$(AllowUnsafeBlocks)"
|
||||||
AnalyzerConfigFiles="@(EditorConfigFiles)"
|
AnalyzerConfigFiles="@(EditorConfigFiles)"
|
||||||
Analyzers="@(Analyzer)"
|
Analyzers="@(Analyzer)"
|
||||||
ApplicationConfiguration="$(AppConfigForCompiler)"
|
ApplicationConfiguration="$(AppConfigForCompiler)"
|
||||||
BaseAddress="$(BaseAddress)"
|
BaseAddress="$(BaseAddress)"
|
||||||
CheckForOverflowUnderflow="$(CheckForOverflowUnderflow)"
|
CheckForOverflowUnderflow="$(CheckForOverflowUnderflow)"
|
||||||
ChecksumAlgorithm="$(ChecksumAlgorithm)"
|
ChecksumAlgorithm="$(ChecksumAlgorithm)"
|
||||||
CodeAnalysisRuleSet="$(ResolvedCodeAnalysisRuleSet)"
|
CodeAnalysisRuleSet="$(ResolvedCodeAnalysisRuleSet)"
|
||||||
CodePage="$(CodePage)"
|
CodePage="$(CodePage)"
|
||||||
DebugType="$(DebugType)"
|
DebugType="$(DebugType)"
|
||||||
DefineConstants="$(DefineConstants)"
|
DefineConstants="$(DefineConstants)"
|
||||||
DelaySign="$(DelaySign)"
|
DelaySign="$(DelaySign)"
|
||||||
DisabledWarnings="$(NoWarn)"
|
DisabledWarnings="$(NoWarn)"
|
||||||
DisableSdkPath="$(DisableSdkPath)"
|
DisableSdkPath="$(DisableSdkPath)"
|
||||||
DocumentationFile="@(DocFileItem)"
|
DocumentationFile="@(DocFileItem)"
|
||||||
EmbedAllSources="$(EmbedAllSources)"
|
EmbedAllSources="$(EmbedAllSources)"
|
||||||
EmbeddedFiles="@(EmbeddedFiles)"
|
EmbeddedFiles="@(EmbeddedFiles)"
|
||||||
EmitDebugInformation="$(DebugSymbols)"
|
EmitDebugInformation="$(DebugSymbols)"
|
||||||
EnvironmentVariables="$(CscEnvironment)"
|
EnvironmentVariables="$(CscEnvironment)"
|
||||||
ErrorEndLocation="$(ErrorEndLocation)"
|
ErrorEndLocation="$(ErrorEndLocation)"
|
||||||
ErrorLog="$(ErrorLog)"
|
ErrorLog="$(ErrorLog)"
|
||||||
ErrorReport="$(ErrorReport)"
|
ErrorReport="$(ErrorReport)"
|
||||||
Features="$(Features)"
|
Features="$(Features)"
|
||||||
FileAlignment="$(FileAlignment)"
|
FileAlignment="$(FileAlignment)"
|
||||||
GenerateFullPaths="$(GenerateFullPaths)"
|
GenerateFullPaths="$(GenerateFullPaths)"
|
||||||
HighEntropyVA="$(HighEntropyVA)"
|
HighEntropyVA="$(HighEntropyVA)"
|
||||||
Instrument="$(Instrument)"
|
Instrument="$(Instrument)"
|
||||||
KeyContainer="$(KeyContainerName)"
|
KeyContainer="$(KeyContainerName)"
|
||||||
KeyFile="$(KeyOriginatorFile)"
|
KeyFile="$(KeyOriginatorFile)"
|
||||||
LangVersion="$(LangVersion)"
|
LangVersion="$(LangVersion)"
|
||||||
LinkResources="@(LinkResource)"
|
LinkResources="@(LinkResource)"
|
||||||
MainEntryPoint="$(StartupObject)"
|
MainEntryPoint="$(StartupObject)"
|
||||||
ModuleAssemblyName="$(ModuleAssemblyName)"
|
ModuleAssemblyName="$(ModuleAssemblyName)"
|
||||||
NoConfig="true"
|
NoConfig="true"
|
||||||
NoLogo="$(NoLogo)"
|
NoLogo="$(NoLogo)"
|
||||||
NoStandardLib="$(NoCompilerStandardLib)"
|
NoStandardLib="$(NoCompilerStandardLib)"
|
||||||
NoWin32Manifest="$(NoWin32Manifest)"
|
NoWin32Manifest="$(NoWin32Manifest)"
|
||||||
Nullable="$(Nullable)"
|
Nullable="$(Nullable)"
|
||||||
Optimize="$(Optimize)"
|
Optimize="$(Optimize)"
|
||||||
Deterministic="$(Deterministic)"
|
Deterministic="$(Deterministic)"
|
||||||
PublicSign="$(PublicSign)"
|
PublicSign="$(PublicSign)"
|
||||||
OutputAssembly="@(IntermediateAssembly)"
|
OutputAssembly="@(IntermediateAssembly)"
|
||||||
OutputRefAssembly="@(IntermediateRefAssembly)"
|
OutputRefAssembly="@(IntermediateRefAssembly)"
|
||||||
PdbFile="$(PdbFile)"
|
PdbFile="$(PdbFile)"
|
||||||
Platform="$(PlatformTarget)"
|
Platform="$(PlatformTarget)"
|
||||||
Prefer32Bit="$(Prefer32Bit)"
|
Prefer32Bit="$(Prefer32Bit)"
|
||||||
PreferredUILang="$(PreferredUILang)"
|
PreferredUILang="$(PreferredUILang)"
|
||||||
ProvideCommandLineArgs="$(ProvideCommandLineArgs)"
|
ProvideCommandLineArgs="$(ProvideCommandLineArgs)"
|
||||||
References="@(ReferencePathWithRefAssemblies)"
|
References="@(ReferencePathWithRefAssemblies)"
|
||||||
RefOnly="$(ProduceOnlyReferenceAssembly)"
|
RefOnly="$(ProduceOnlyReferenceAssembly)"
|
||||||
ReportAnalyzer="$(ReportAnalyzer)"
|
ReportAnalyzer="$(ReportAnalyzer)"
|
||||||
Resources="@(_CoreCompileResourceInputs);@(CompiledLicenseFile)"
|
Resources="@(_CoreCompileResourceInputs);@(CompiledLicenseFile)"
|
||||||
ResponseFiles="$(CompilerResponseFile)"
|
ResponseFiles="$(CompilerResponseFile)"
|
||||||
RuntimeMetadataVersion="$(RuntimeMetadataVersion)"
|
RuntimeMetadataVersion="$(RuntimeMetadataVersion)"
|
||||||
SharedCompilationId="$(SharedCompilationId)"
|
SharedCompilationId="$(SharedCompilationId)"
|
||||||
SkipCompilerExecution="$(SkipCompilerExecution)"
|
SkipCompilerExecution="$(SkipCompilerExecution)"
|
||||||
Sources="@(Compile)"
|
Sources="@(Compile)"
|
||||||
SubsystemVersion="$(SubsystemVersion)"
|
SubsystemVersion="$(SubsystemVersion)"
|
||||||
TargetType="$(OutputType)"
|
TargetType="$(OutputType)"
|
||||||
ToolExe="$(CscToolExe)"
|
ToolExe="$(CscToolExe)"
|
||||||
ToolPath="$(CscToolPath)"
|
ToolPath="$(CscToolPath)"
|
||||||
TreatWarningsAsErrors="$(TreatWarningsAsErrors)"
|
TreatWarningsAsErrors="$(TreatWarningsAsErrors)"
|
||||||
UseHostCompilerIfAvailable="$(UseHostCompilerIfAvailable)"
|
UseHostCompilerIfAvailable="$(UseHostCompilerIfAvailable)"
|
||||||
UseSharedCompilation="$(UseSharedCompilation)"
|
UseSharedCompilation="$(UseSharedCompilation)"
|
||||||
Utf8Output="$(Utf8Output)"
|
Utf8Output="$(Utf8Output)"
|
||||||
VsSessionGuid="$(VsSessionGuid)"
|
VsSessionGuid="$(VsSessionGuid)"
|
||||||
WarningLevel="$(WarningLevel)"
|
WarningLevel="$(WarningLevel)"
|
||||||
WarningsAsErrors="$(WarningsAsErrors)"
|
WarningsAsErrors="$(WarningsAsErrors)"
|
||||||
WarningsNotAsErrors="$(WarningsNotAsErrors)"
|
WarningsNotAsErrors="$(WarningsNotAsErrors)"
|
||||||
Win32Icon="$(ApplicationIcon)"
|
Win32Icon="$(ApplicationIcon)"
|
||||||
Win32Manifest="$(Win32Manifest)"
|
Win32Manifest="$(Win32Manifest)"
|
||||||
Win32Resource="$(Win32Resource)"
|
Win32Resource="$(Win32Resource)"
|
||||||
PathMap="$(PathMap)"
|
PathMap="$(PathMap)"
|
||||||
SourceLink="$(SourceLink)">
|
SourceLink="$(SourceLink)">
|
||||||
<Output TaskParameter="CommandLineArgs" ItemName="CscCommandLineArgs" />
|
<Output TaskParameter="CommandLineArgs" ItemName="CscCommandLineArgs" />
|
||||||
</Csc>
|
</Csc>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<_CoreCompileResourceInputs Remove="@(_CoreCompileResourceInputs)" />
|
<_CoreCompileResourceInputs Remove="@(_CoreCompileResourceInputs)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<CallTarget Targets="$(TargetsTriggeredByCompilation)" Condition="'$(TargetsTriggeredByCompilation)' != ''" />
|
<CallTarget Targets="$(TargetsTriggeredByCompilation)" Condition="'$(TargetsTriggeredByCompilation)' != ''" />
|
||||||
</Target>
|
</Target>
|
||||||
</Project>
|
</Project>
|
Binary file not shown.
@ -1 +1 @@
|
|||||||
d3a0d2895d543df718c1dd8091fd295179af0716
|
f10654379c9f8c1ded91fafb333406075b370713
|
@ -1 +1 @@
|
|||||||
4b5c6518a0432f48b1f5b33a7a60179fb7c92f59
|
ee7438011f35265e69c71ff4b51fe4ea71cf08cb
|
@ -1 +1 @@
|
|||||||
6655ed33fc7ab0841ddc1d568523d5e939a9cdb8
|
eb647c7c2862ae76b6456f73e918ee5c85608d1c
|
@ -1 +1 @@
|
|||||||
5e168fa3218ec251c4329e301b60e3bf226fb236
|
32289bf324fb4ea7107cc227d79948830378f0b1
|
@ -1,167 +1,167 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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. -->
|
<!-- 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 ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<!--
|
<!--
|
||||||
Common targets for managed compilers.
|
Common targets for managed compilers.
|
||||||
-->
|
-->
|
||||||
<UsingTask TaskName="Microsoft.CodeAnalysis.BuildTasks.MapSourceRoots" AssemblyFile="$(MSBuildThisFileDirectory)Microsoft.Build.Tasks.CodeAnalysis.dll" />
|
<UsingTask TaskName="Microsoft.CodeAnalysis.BuildTasks.MapSourceRoots" AssemblyFile="$(MSBuildThisFileDirectory)Microsoft.Build.Tasks.CodeAnalysis.dll" />
|
||||||
|
|
||||||
<Target Name="ShimReferencePathsWhenCommonTargetsDoesNotUnderstandReferenceAssemblies"
|
<Target Name="ShimReferencePathsWhenCommonTargetsDoesNotUnderstandReferenceAssemblies"
|
||||||
BeforeTargets="CoreCompile"
|
BeforeTargets="CoreCompile"
|
||||||
Condition="'@(ReferencePathWithRefAssemblies)' == ''">
|
Condition="'@(ReferencePathWithRefAssemblies)' == ''">
|
||||||
<!--
|
<!--
|
||||||
FindReferenceAssembliesForReferences target in Common targets populate this item
|
FindReferenceAssembliesForReferences target in Common targets populate this item
|
||||||
since dev15.3. The compiler targets may be used (via NuGet package) on earlier MSBuilds.
|
since dev15.3. The compiler targets may be used (via NuGet package) on earlier MSBuilds.
|
||||||
If the ReferencePathWithRefAssemblies item is not populated, just use ReferencePaths
|
If the ReferencePathWithRefAssemblies item is not populated, just use ReferencePaths
|
||||||
(implementation assemblies) as they are.
|
(implementation assemblies) as they are.
|
||||||
|
|
||||||
Since XAML inner build runs CoreCompile directly (instead of Compile target),
|
Since XAML inner build runs CoreCompile directly (instead of Compile target),
|
||||||
it also doesn't invoke FindReferenceAssembliesForReferences listed in CompileDependsOn.
|
it also doesn't invoke FindReferenceAssembliesForReferences listed in CompileDependsOn.
|
||||||
In that case we also populate ReferencePathWithRefAssemblies with implementation assemblies.
|
In that case we also populate ReferencePathWithRefAssemblies with implementation assemblies.
|
||||||
-->
|
-->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ReferencePathWithRefAssemblies Include="@(ReferencePath)" />
|
<ReferencePathWithRefAssemblies Include="@(ReferencePath)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<Target Name="_BeforeVBCSCoreCompile"
|
<Target Name="_BeforeVBCSCoreCompile"
|
||||||
DependsOnTargets="ShimReferencePathsWhenCommonTargetsDoesNotUnderstandReferenceAssemblies">
|
DependsOnTargets="ShimReferencePathsWhenCommonTargetsDoesNotUnderstandReferenceAssemblies">
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetingClr2Framework)' == 'true'">
|
<ItemGroup Condition="'$(TargetingClr2Framework)' == 'true'">
|
||||||
<ReferencePathWithRefAssemblies>
|
<ReferencePathWithRefAssemblies>
|
||||||
<EmbedInteropTypes />
|
<EmbedInteropTypes />
|
||||||
</ReferencePathWithRefAssemblies>
|
</ReferencePathWithRefAssemblies>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<!-- Prefer32Bit was introduced in .NET 4.5. Set it to false if we are targeting 4.0 -->
|
<!-- Prefer32Bit was introduced in .NET 4.5. Set it to false if we are targeting 4.0 -->
|
||||||
<PropertyGroup Condition="('$(TargetFrameworkVersion)' == 'v4.0')">
|
<PropertyGroup Condition="('$(TargetFrameworkVersion)' == 'v4.0')">
|
||||||
<Prefer32Bit>false</Prefer32Bit>
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- TODO: Remove this ItemGroup once it has been moved to "_GenerateCompileInputs" target in Microsoft.Common.CurrentVersion.targets.
|
<!-- TODO: Remove this ItemGroup once it has been moved to "_GenerateCompileInputs" target in Microsoft.Common.CurrentVersion.targets.
|
||||||
https://github.com/dotnet/roslyn/issues/12223 -->
|
https://github.com/dotnet/roslyn/issues/12223 -->
|
||||||
<ItemGroup Condition="('$(AdditionalFileItemNames)' != '')">
|
<ItemGroup Condition="('$(AdditionalFileItemNames)' != '')">
|
||||||
<AdditionalFileItems Include="$(AdditionalFileItemNames)" />
|
<AdditionalFileItems Include="$(AdditionalFileItemNames)" />
|
||||||
<AdditionalFiles Include="@(%(AdditionalFileItems.Identity))" />
|
<AdditionalFiles Include="@(%(AdditionalFileItems.Identity))" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(UseSharedCompilation)' == ''">
|
<PropertyGroup Condition="'$(UseSharedCompilation)' == ''">
|
||||||
<UseSharedCompilation>true</UseSharedCompilation>
|
<UseSharedCompilation>true</UseSharedCompilation>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
========================
|
========================
|
||||||
.editorconfig Support
|
.editorconfig Support
|
||||||
========================
|
========================
|
||||||
|
|
||||||
The discovery of .editorconfig files depends on MSBuild features only available in version 16.1 and later. To avoid evaluation errors when
|
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.
|
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.
|
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" />
|
<Import Project="Microsoft.Managed.EditorConfig.targets" Condition="$(MSBuildVersion) >= 16.1.0" />
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
========================
|
========================
|
||||||
DeterministicSourcePaths
|
DeterministicSourcePaths
|
||||||
========================
|
========================
|
||||||
|
|
||||||
Unless specified otherwise enable deterministic source root (PathMap) when building deterministically on CI server, but not for local builds.
|
Unless specified otherwise enable deterministic source root (PathMap) when building deterministically on CI server, but not for local builds.
|
||||||
In order for the debugger to find source files when debugging a locally built binary the PDB must contain original, unmapped local paths.
|
In order for the debugger to find source files when debugging a locally built binary the PDB must contain original, unmapped local paths.
|
||||||
-->
|
-->
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<DeterministicSourcePaths Condition="'$(DeterministicSourcePaths)' == '' and '$(Deterministic)' == 'true' and '$(ContinuousIntegrationBuild)' == 'true'">true</DeterministicSourcePaths>
|
<DeterministicSourcePaths Condition="'$(DeterministicSourcePaths)' == '' and '$(Deterministic)' == 'true' and '$(ContinuousIntegrationBuild)' == 'true'">true</DeterministicSourcePaths>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
==========
|
==========
|
||||||
SourceRoot
|
SourceRoot
|
||||||
==========
|
==========
|
||||||
|
|
||||||
All source files of the project are expected to be located under one of the directories specified by SourceRoot item group.
|
All source files of the project are expected to be located under one of the directories specified by SourceRoot item group.
|
||||||
This target collects all SourceRoots from various sources.
|
This target collects all SourceRoots from various sources.
|
||||||
|
|
||||||
This target calculates final local path for each SourceRoot and sets SourceRoot.MappedPath metadata accordingly.
|
This target calculates final local path for each SourceRoot and sets SourceRoot.MappedPath metadata accordingly.
|
||||||
The final path is a path with deterministic prefix when DeterministicSourcePaths is true, and the original path otherwise.
|
The final path is a path with deterministic prefix when DeterministicSourcePaths is true, and the original path otherwise.
|
||||||
In addition, the target validates and deduplicates the SourceRoot items.
|
In addition, the target validates and deduplicates the SourceRoot items.
|
||||||
|
|
||||||
InitializeSourceControlInformation is an msbuild target that ensures the SourceRoot items are populated from source control.
|
InitializeSourceControlInformation is an msbuild target that ensures the SourceRoot items are populated from source control.
|
||||||
The target is available only if SourceControlInformationFeatureSupported is true.
|
The target is available only if SourceControlInformationFeatureSupported is true.
|
||||||
|
|
||||||
A consumer of SourceRoot.MappedPath metadata, such as Source Link generator, shall depend on this target.
|
A consumer of SourceRoot.MappedPath metadata, such as Source Link generator, shall depend on this target.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<Target Name="InitializeSourceRootMappedPaths"
|
<Target Name="InitializeSourceRootMappedPaths"
|
||||||
DependsOnTargets="_InitializeSourceRootMappedPathsFromSourceControl">
|
DependsOnTargets="_InitializeSourceRootMappedPathsFromSourceControl">
|
||||||
|
|
||||||
<ItemGroup Condition="'@(_MappedSourceRoot)' != ''">
|
<ItemGroup Condition="'@(_MappedSourceRoot)' != ''">
|
||||||
<_MappedSourceRoot Remove="@(_MappedSourceRoot)" />
|
<_MappedSourceRoot Remove="@(_MappedSourceRoot)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<Microsoft.CodeAnalysis.BuildTasks.MapSourceRoots SourceRoots="@(SourceRoot)" Deterministic="$(DeterministicSourcePaths)">
|
<Microsoft.CodeAnalysis.BuildTasks.MapSourceRoots SourceRoots="@(SourceRoot)" Deterministic="$(DeterministicSourcePaths)">
|
||||||
<Output TaskParameter="MappedSourceRoots" ItemName="_MappedSourceRoot" />
|
<Output TaskParameter="MappedSourceRoots" ItemName="_MappedSourceRoot" />
|
||||||
</Microsoft.CodeAnalysis.BuildTasks.MapSourceRoots>
|
</Microsoft.CodeAnalysis.BuildTasks.MapSourceRoots>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<SourceRoot Remove="@(SourceRoot)" />
|
<SourceRoot Remove="@(SourceRoot)" />
|
||||||
<SourceRoot Include="@(_MappedSourceRoot)" />
|
<SourceRoot Include="@(_MappedSourceRoot)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Declare that target InitializeSourceRootMappedPaths that populates MappedPaths metadata on SourceRoot items is available.
|
Declare that target InitializeSourceRootMappedPaths that populates MappedPaths metadata on SourceRoot items is available.
|
||||||
-->
|
-->
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<SourceRootMappedPathsFeatureSupported>true</SourceRootMappedPathsFeatureSupported>
|
<SourceRootMappedPathsFeatureSupported>true</SourceRootMappedPathsFeatureSupported>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
If InitializeSourceControlInformation target isn't supported, we just continue without invoking that synchronization target.
|
If InitializeSourceControlInformation target isn't supported, we just continue without invoking that synchronization target.
|
||||||
We'll proceed with SourceRoot (and other source control properties) provided by the user (or blank).
|
We'll proceed with SourceRoot (and other source control properties) provided by the user (or blank).
|
||||||
-->
|
-->
|
||||||
<Target Name="_InitializeSourceRootMappedPathsFromSourceControl"
|
<Target Name="_InitializeSourceRootMappedPathsFromSourceControl"
|
||||||
DependsOnTargets="InitializeSourceControlInformation"
|
DependsOnTargets="InitializeSourceControlInformation"
|
||||||
Condition="'$(SourceControlInformationFeatureSupported)' == 'true'" />
|
Condition="'$(SourceControlInformationFeatureSupported)' == 'true'" />
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
=======
|
=======
|
||||||
PathMap
|
PathMap
|
||||||
=======
|
=======
|
||||||
|
|
||||||
If DeterministicSourcePaths is true sets PathMap based on SourceRoot.MappedPaths.
|
If DeterministicSourcePaths is true sets PathMap based on SourceRoot.MappedPaths.
|
||||||
|
|
||||||
This target requires SourceRoot to be initialized in order to calculate the PathMap.
|
This target requires SourceRoot to be initialized in order to calculate the PathMap.
|
||||||
If SourceRoot doesn't contain any top-level roots an error is reported.
|
If SourceRoot doesn't contain any top-level roots an error is reported.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<Target Name="_SetPathMapFromSourceRoots"
|
<Target Name="_SetPathMapFromSourceRoots"
|
||||||
DependsOnTargets="InitializeSourceRootMappedPaths"
|
DependsOnTargets="InitializeSourceRootMappedPaths"
|
||||||
BeforeTargets="CoreCompile"
|
BeforeTargets="CoreCompile"
|
||||||
Condition="'$(DeterministicSourcePaths)' == 'true'">
|
Condition="'$(DeterministicSourcePaths)' == 'true'">
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<_TopLevelSourceRoot Include="@(SourceRoot)" Condition="'%(SourceRoot.NestedRoot)' == ''"/>
|
<_TopLevelSourceRoot Include="@(SourceRoot)" Condition="'%(SourceRoot.NestedRoot)' == ''"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'@(_TopLevelSourceRoot)' != ''">
|
<PropertyGroup Condition="'@(_TopLevelSourceRoot)' != ''">
|
||||||
<!-- TODO: Report error/warning if /pathmap doesn't cover all emitted source paths: https://github.com/dotnet/roslyn/issues/23969 -->
|
<!-- TODO: Report error/warning if /pathmap doesn't cover all emitted source paths: https://github.com/dotnet/roslyn/issues/23969 -->
|
||||||
|
|
||||||
<!-- TODO: PathMap should accept and ignore empty mapping: https://github.com/dotnet/roslyn/issues/23523 -->
|
<!-- TODO: PathMap should accept and ignore empty mapping: https://github.com/dotnet/roslyn/issues/23523 -->
|
||||||
<PathMap Condition="'$(PathMap)' != ''">,$(PathMap)</PathMap>
|
<PathMap Condition="'$(PathMap)' != ''">,$(PathMap)</PathMap>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Prepend the SourceRoot.MappedPath values to PathMap, if it already has a value.
|
Prepend the SourceRoot.MappedPath values to PathMap, if it already has a value.
|
||||||
For each emitted source path the compiler applies the first mapping that matches the path.
|
For each emitted source path the compiler applies the first mapping that matches the path.
|
||||||
PathMap values set previously will thus only be applied if the mapping provided by
|
PathMap values set previously will thus only be applied if the mapping provided by
|
||||||
SourceRoot.MappedPath doesn't match. Since SourceRoot.MappedPath is also used by SourceLink
|
SourceRoot.MappedPath doesn't match. Since SourceRoot.MappedPath is also used by SourceLink
|
||||||
preferring it over manually set PathMap ensures that PathMap is consistent with SourceLink.
|
preferring it over manually set PathMap ensures that PathMap is consistent with SourceLink.
|
||||||
|
|
||||||
TODO: quote the paths to avoid misinterpreting ',' and '=' in them as separators,
|
TODO: quote the paths to avoid misinterpreting ',' and '=' in them as separators,
|
||||||
but quoting doesn't currently work (see https://github.com/dotnet/roslyn/issues/22835).
|
but quoting doesn't currently work (see https://github.com/dotnet/roslyn/issues/22835).
|
||||||
-->
|
-->
|
||||||
<PathMap>@(_TopLevelSourceRoot->'%(Identity)=%(MappedPath)', ',')$(PathMap)</PathMap>
|
<PathMap>@(_TopLevelSourceRoot->'%(Identity)=%(MappedPath)', ',')$(PathMap)</PathMap>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
@ -1,13 +1,13 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?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. -->
|
<!-- 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">
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<_AllDirectoriesAbove Include="@(Compile->GetPathsOfAllDirectoriesAbove())" Condition="'$(DiscoverEditorConfigFiles)' != 'false'" />
|
<_AllDirectoriesAbove Include="@(Compile->GetPathsOfAllDirectoriesAbove())" Condition="'$(DiscoverEditorConfigFiles)' != 'false'" />
|
||||||
<!-- Work around a GetPathsOfAllDirectoriesAbove() bug where it can return multiple equivalent paths when the
|
<!-- 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 -->
|
compilation includes linked files with relative paths - https://github.com/microsoft/msbuild/issues/4392 -->
|
||||||
<PotentialEditorConfigFiles Include="@(_AllDirectoriesAbove->'%(FullPath)'->Distinct()->Combine('.editorconfig'))" Condition="'$(DiscoverEditorConfigFiles)' != 'false'" />
|
<PotentialEditorConfigFiles Include="@(_AllDirectoriesAbove->'%(FullPath)'->Distinct()->Combine('.editorconfig'))" Condition="'$(DiscoverEditorConfigFiles)' != 'false'" />
|
||||||
<EditorConfigFiles Include="@(PotentialEditorConfigFiles->Exists())" Condition="'$(DiscoverEditorConfigFiles)' != 'false'" />
|
<EditorConfigFiles Include="@(PotentialEditorConfigFiles->Exists())" Condition="'$(DiscoverEditorConfigFiles)' != 'false'" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
@ -1,136 +1,136 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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. -->
|
<!-- 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 ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<Import Project="Microsoft.Managed.Core.targets"/>
|
<Import Project="Microsoft.Managed.Core.targets"/>
|
||||||
|
|
||||||
<Target Name="CoreCompile"
|
<Target Name="CoreCompile"
|
||||||
Inputs="$(MSBuildAllProjects);
|
Inputs="$(MSBuildAllProjects);
|
||||||
@(Compile);
|
@(Compile);
|
||||||
@(_CoreCompileResourceInputs);
|
@(_CoreCompileResourceInputs);
|
||||||
$(ApplicationIcon);
|
$(ApplicationIcon);
|
||||||
$(AssemblyOriginatorKeyFile);
|
$(AssemblyOriginatorKeyFile);
|
||||||
@(ReferencePathWithRefAssemblies);
|
@(ReferencePathWithRefAssemblies);
|
||||||
@(CompiledLicenseFile);
|
@(CompiledLicenseFile);
|
||||||
@(LinkResource);
|
@(LinkResource);
|
||||||
@(EmbeddedDocumentation);
|
@(EmbeddedDocumentation);
|
||||||
$(Win32Resource);
|
$(Win32Resource);
|
||||||
$(Win32Manifest);
|
$(Win32Manifest);
|
||||||
@(CustomAdditionalCompileInputs);
|
@(CustomAdditionalCompileInputs);
|
||||||
$(ResolvedCodeAnalysisRuleSet);
|
$(ResolvedCodeAnalysisRuleSet);
|
||||||
@(AdditionalFiles);
|
@(AdditionalFiles);
|
||||||
@(EmbeddedFiles);
|
@(EmbeddedFiles);
|
||||||
@(EditorConfigFiles)"
|
@(EditorConfigFiles)"
|
||||||
Outputs="@(DocFileItem);
|
Outputs="@(DocFileItem);
|
||||||
@(IntermediateAssembly);
|
@(IntermediateAssembly);
|
||||||
@(IntermediateRefAssembly);
|
@(IntermediateRefAssembly);
|
||||||
@(_DebugSymbolsIntermediatePath);
|
@(_DebugSymbolsIntermediatePath);
|
||||||
$(NonExistentFile);
|
$(NonExistentFile);
|
||||||
@(CustomAdditionalCompileOutputs)"
|
@(CustomAdditionalCompileOutputs)"
|
||||||
Returns="@(VbcCommandLineArgs)"
|
Returns="@(VbcCommandLineArgs)"
|
||||||
DependsOnTargets="$(CoreCompileDependsOn);_BeforeVBCSCoreCompile">
|
DependsOnTargets="$(CoreCompileDependsOn);_BeforeVBCSCoreCompile">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<_NoWarnings Condition="'$(WarningLevel)' == '0'">true</_NoWarnings>
|
<_NoWarnings Condition="'$(WarningLevel)' == '0'">true</_NoWarnings>
|
||||||
<_NoWarnings Condition="'$(WarningLevel)' == '1'">false</_NoWarnings>
|
<_NoWarnings Condition="'$(WarningLevel)' == '1'">false</_NoWarnings>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<!-- If we are targeting winmdobj we want to specifically the pdbFile property since we do not want it to collide with the output of winmdexp-->
|
<!-- If we are targeting winmdobj we want to specifically the pdbFile property since we do not want it to collide with the output of winmdexp-->
|
||||||
<PdbFile Condition="'$(PdbFile)' == '' AND '$(OutputType)' == 'winmdobj' AND '$(DebugSymbols)' == 'true'">$(IntermediateOutputPath)$(TargetName).compile.pdb</PdbFile>
|
<PdbFile Condition="'$(PdbFile)' == '' AND '$(OutputType)' == 'winmdobj' AND '$(DebugSymbols)' == 'true'">$(IntermediateOutputPath)$(TargetName).compile.pdb</PdbFile>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- Condition is to filter out the _CoreCompileResourceInputs so that it doesn't pass in culture resources to the compiler -->
|
<!-- Condition is to filter out the _CoreCompileResourceInputs so that it doesn't pass in culture resources to the compiler -->
|
||||||
<Vbc Condition="'%(_CoreCompileResourceInputs.WithCulture)' != 'true'"
|
<Vbc Condition="'%(_CoreCompileResourceInputs.WithCulture)' != 'true'"
|
||||||
AdditionalLibPaths="$(AdditionalLibPaths)"
|
AdditionalLibPaths="$(AdditionalLibPaths)"
|
||||||
AddModules="@(AddModules)"
|
AddModules="@(AddModules)"
|
||||||
AdditionalFiles="@(AdditionalFiles)"
|
AdditionalFiles="@(AdditionalFiles)"
|
||||||
AnalyzerConfigFiles="@(EditorConfigFiles)"
|
AnalyzerConfigFiles="@(EditorConfigFiles)"
|
||||||
Analyzers="@(Analyzer)"
|
Analyzers="@(Analyzer)"
|
||||||
BaseAddress="$(BaseAddress)"
|
BaseAddress="$(BaseAddress)"
|
||||||
ChecksumAlgorithm="$(ChecksumAlgorithm)"
|
ChecksumAlgorithm="$(ChecksumAlgorithm)"
|
||||||
CodeAnalysisRuleSet="$(ResolvedCodeAnalysisRuleSet)"
|
CodeAnalysisRuleSet="$(ResolvedCodeAnalysisRuleSet)"
|
||||||
CodePage="$(CodePage)"
|
CodePage="$(CodePage)"
|
||||||
DebugType="$(DebugType)"
|
DebugType="$(DebugType)"
|
||||||
DefineConstants="$(FinalDefineConstants)"
|
DefineConstants="$(FinalDefineConstants)"
|
||||||
DelaySign="$(DelaySign)"
|
DelaySign="$(DelaySign)"
|
||||||
DisableSdkPath="$(DisableSdkPath)"
|
DisableSdkPath="$(DisableSdkPath)"
|
||||||
DisabledWarnings="$(NoWarn)"
|
DisabledWarnings="$(NoWarn)"
|
||||||
DocumentationFile="@(DocFileItem)"
|
DocumentationFile="@(DocFileItem)"
|
||||||
EmbedAllSources="$(EmbedAllSources)"
|
EmbedAllSources="$(EmbedAllSources)"
|
||||||
EmbeddedFiles="@(EmbeddedFiles)"
|
EmbeddedFiles="@(EmbeddedFiles)"
|
||||||
EmitDebugInformation="$(DebugSymbols)"
|
EmitDebugInformation="$(DebugSymbols)"
|
||||||
EnvironmentVariables="$(VbcEnvironment)"
|
EnvironmentVariables="$(VbcEnvironment)"
|
||||||
ErrorLog="$(ErrorLog)"
|
ErrorLog="$(ErrorLog)"
|
||||||
ErrorReport="$(ErrorReport)"
|
ErrorReport="$(ErrorReport)"
|
||||||
Features="$(Features)"
|
Features="$(Features)"
|
||||||
FileAlignment="$(FileAlignment)"
|
FileAlignment="$(FileAlignment)"
|
||||||
GenerateDocumentation="$(GenerateDocumentation)"
|
GenerateDocumentation="$(GenerateDocumentation)"
|
||||||
HighEntropyVA="$(HighEntropyVA)"
|
HighEntropyVA="$(HighEntropyVA)"
|
||||||
Imports="@(Import)"
|
Imports="@(Import)"
|
||||||
Instrument="$(Instrument)"
|
Instrument="$(Instrument)"
|
||||||
KeyContainer="$(KeyContainerName)"
|
KeyContainer="$(KeyContainerName)"
|
||||||
KeyFile="$(KeyOriginatorFile)"
|
KeyFile="$(KeyOriginatorFile)"
|
||||||
LangVersion="$(LangVersion)"
|
LangVersion="$(LangVersion)"
|
||||||
LinkResources="@(LinkResource)"
|
LinkResources="@(LinkResource)"
|
||||||
MainEntryPoint="$(StartupObject)"
|
MainEntryPoint="$(StartupObject)"
|
||||||
ModuleAssemblyName="$(ModuleAssemblyName)"
|
ModuleAssemblyName="$(ModuleAssemblyName)"
|
||||||
NoConfig="true"
|
NoConfig="true"
|
||||||
NoStandardLib="$(NoCompilerStandardLib)"
|
NoStandardLib="$(NoCompilerStandardLib)"
|
||||||
NoVBRuntimeReference="$(NoVBRuntimeReference)"
|
NoVBRuntimeReference="$(NoVBRuntimeReference)"
|
||||||
NoWarnings="$(_NoWarnings)"
|
NoWarnings="$(_NoWarnings)"
|
||||||
NoWin32Manifest="$(NoWin32Manifest)"
|
NoWin32Manifest="$(NoWin32Manifest)"
|
||||||
Optimize="$(Optimize)"
|
Optimize="$(Optimize)"
|
||||||
Deterministic="$(Deterministic)"
|
Deterministic="$(Deterministic)"
|
||||||
PublicSign="$(PublicSign)"
|
PublicSign="$(PublicSign)"
|
||||||
OptionCompare="$(OptionCompare)"
|
OptionCompare="$(OptionCompare)"
|
||||||
OptionExplicit="$(OptionExplicit)"
|
OptionExplicit="$(OptionExplicit)"
|
||||||
OptionInfer="$(OptionInfer)"
|
OptionInfer="$(OptionInfer)"
|
||||||
OptionStrict="$(OptionStrict)"
|
OptionStrict="$(OptionStrict)"
|
||||||
OptionStrictType="$(OptionStrictType)"
|
OptionStrictType="$(OptionStrictType)"
|
||||||
OutputAssembly="@(IntermediateAssembly)"
|
OutputAssembly="@(IntermediateAssembly)"
|
||||||
OutputRefAssembly="@(IntermediateRefAssembly)"
|
OutputRefAssembly="@(IntermediateRefAssembly)"
|
||||||
PdbFile="$(PdbFile)"
|
PdbFile="$(PdbFile)"
|
||||||
Platform="$(PlatformTarget)"
|
Platform="$(PlatformTarget)"
|
||||||
Prefer32Bit="$(Prefer32Bit)"
|
Prefer32Bit="$(Prefer32Bit)"
|
||||||
PreferredUILang="$(PreferredUILang)"
|
PreferredUILang="$(PreferredUILang)"
|
||||||
ProvideCommandLineArgs="$(ProvideCommandLineArgs)"
|
ProvideCommandLineArgs="$(ProvideCommandLineArgs)"
|
||||||
References="@(ReferencePathWithRefAssemblies)"
|
References="@(ReferencePathWithRefAssemblies)"
|
||||||
RefOnly="$(ProduceOnlyReferenceAssembly)"
|
RefOnly="$(ProduceOnlyReferenceAssembly)"
|
||||||
RemoveIntegerChecks="$(RemoveIntegerChecks)"
|
RemoveIntegerChecks="$(RemoveIntegerChecks)"
|
||||||
ReportAnalyzer="$(ReportAnalyzer)"
|
ReportAnalyzer="$(ReportAnalyzer)"
|
||||||
Resources="@(_CoreCompileResourceInputs);@(CompiledLicenseFile)"
|
Resources="@(_CoreCompileResourceInputs);@(CompiledLicenseFile)"
|
||||||
ResponseFiles="$(CompilerResponseFile)"
|
ResponseFiles="$(CompilerResponseFile)"
|
||||||
RootNamespace="$(RootNamespace)"
|
RootNamespace="$(RootNamespace)"
|
||||||
RuntimeMetadataVersion="$(RuntimeMetadataVersion)"
|
RuntimeMetadataVersion="$(RuntimeMetadataVersion)"
|
||||||
SdkPath="$(FrameworkPathOverride)"
|
SdkPath="$(FrameworkPathOverride)"
|
||||||
SharedCompilationId="$(SharedCompilationId)"
|
SharedCompilationId="$(SharedCompilationId)"
|
||||||
SkipCompilerExecution="$(SkipCompilerExecution)"
|
SkipCompilerExecution="$(SkipCompilerExecution)"
|
||||||
Sources="@(Compile)"
|
Sources="@(Compile)"
|
||||||
SubsystemVersion="$(SubsystemVersion)"
|
SubsystemVersion="$(SubsystemVersion)"
|
||||||
TargetCompactFramework="$(TargetCompactFramework)"
|
TargetCompactFramework="$(TargetCompactFramework)"
|
||||||
TargetType="$(OutputType)"
|
TargetType="$(OutputType)"
|
||||||
ToolExe="$(VbcToolExe)"
|
ToolExe="$(VbcToolExe)"
|
||||||
ToolPath="$(VbcToolPath)"
|
ToolPath="$(VbcToolPath)"
|
||||||
TreatWarningsAsErrors="$(TreatWarningsAsErrors)"
|
TreatWarningsAsErrors="$(TreatWarningsAsErrors)"
|
||||||
UseHostCompilerIfAvailable="$(UseHostCompilerIfAvailable)"
|
UseHostCompilerIfAvailable="$(UseHostCompilerIfAvailable)"
|
||||||
UseSharedCompilation="$(UseSharedCompilation)"
|
UseSharedCompilation="$(UseSharedCompilation)"
|
||||||
Utf8Output="$(Utf8Output)"
|
Utf8Output="$(Utf8Output)"
|
||||||
VBRuntimePath="$(VBRuntimePath)"
|
VBRuntimePath="$(VBRuntimePath)"
|
||||||
Verbosity="$(VbcVerbosity)"
|
Verbosity="$(VbcVerbosity)"
|
||||||
VsSessionGuid="$(VsSessionGuid)"
|
VsSessionGuid="$(VsSessionGuid)"
|
||||||
WarningsAsErrors="$(WarningsAsErrors)"
|
WarningsAsErrors="$(WarningsAsErrors)"
|
||||||
WarningsNotAsErrors="$(WarningsNotAsErrors)"
|
WarningsNotAsErrors="$(WarningsNotAsErrors)"
|
||||||
Win32Icon="$(ApplicationIcon)"
|
Win32Icon="$(ApplicationIcon)"
|
||||||
Win32Manifest="$(Win32Manifest)"
|
Win32Manifest="$(Win32Manifest)"
|
||||||
Win32Resource="$(Win32Resource)"
|
Win32Resource="$(Win32Resource)"
|
||||||
VBRuntime="$(VBRuntime)"
|
VBRuntime="$(VBRuntime)"
|
||||||
PathMap="$(PathMap)"
|
PathMap="$(PathMap)"
|
||||||
SourceLink="$(SourceLink)">
|
SourceLink="$(SourceLink)">
|
||||||
<Output TaskParameter="CommandLineArgs" ItemName="VbcCommandLineArgs" />
|
<Output TaskParameter="CommandLineArgs" ItemName="VbcCommandLineArgs" />
|
||||||
</Vbc>
|
</Vbc>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<_CoreCompileResourceInputs Remove="@(_CoreCompileResourceInputs)" />
|
<_CoreCompileResourceInputs Remove="@(_CoreCompileResourceInputs)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<CallTarget Targets="$(TargetsTriggeredByCompilation)" Condition="'$(TargetsTriggeredByCompilation)' != ''" />
|
<CallTarget Targets="$(TargetsTriggeredByCompilation)" Condition="'$(TargetsTriggeredByCompilation)' != ''" />
|
||||||
</Target>
|
</Target>
|
||||||
</Project>
|
</Project>
|
||||||
|
Binary file not shown.
@ -1,82 +1,82 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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. -->
|
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
|
||||||
<configuration>
|
<configuration>
|
||||||
<startup>
|
<startup>
|
||||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
</startup>
|
</startup>
|
||||||
<runtime>
|
<runtime>
|
||||||
<gcServer enabled="true" />
|
<gcServer enabled="true" />
|
||||||
<gcConcurrent enabled="false" />
|
<gcConcurrent enabled="false" />
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.CodeAnalysis.CSharp" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
<assemblyIdentity name="Microsoft.CodeAnalysis.CSharp" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.CodeAnalysis" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
<assemblyIdentity name="Microsoft.CodeAnalysis" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.CodeAnalysis.VisualBasic" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
<assemblyIdentity name="Microsoft.CodeAnalysis.VisualBasic" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-1.2.3.0" newVersion="1.2.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-1.2.3.0" newVersion="1.2.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.1.3.0" newVersion="4.1.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.1.3.0" newVersion="4.1.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Reflection.Metadata" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Reflection.Metadata" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-1.4.3.0" newVersion="1.4.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-1.4.3.0" newVersion="1.4.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
</runtime>
|
</runtime>
|
||||||
<appSettings>
|
<appSettings>
|
||||||
<!-- Number of seconds with no activity before the server times out and closes.
|
<!-- Number of seconds with no activity before the server times out and closes.
|
||||||
Set to -1 to never shut down the server. -->
|
Set to -1 to never shut down the server. -->
|
||||||
<add key="keepalive" value="600" />
|
<add key="keepalive" value="600" />
|
||||||
</appSettings>
|
</appSettings>
|
||||||
</configuration>
|
</configuration>
|
Binary file not shown.
@ -1,71 +1,71 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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. -->
|
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
|
||||||
<configuration>
|
<configuration>
|
||||||
<startup>
|
<startup>
|
||||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
</startup>
|
</startup>
|
||||||
<runtime>
|
<runtime>
|
||||||
<gcServer enabled="true" />
|
<gcServer enabled="true" />
|
||||||
<gcConcurrent enabled="false" />
|
<gcConcurrent enabled="false" />
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.CodeAnalysis.CSharp" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
<assemblyIdentity name="Microsoft.CodeAnalysis.CSharp" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.CodeAnalysis" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
<assemblyIdentity name="Microsoft.CodeAnalysis" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-1.2.3.0" newVersion="1.2.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-1.2.3.0" newVersion="1.2.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.1.3.0" newVersion="4.1.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.1.3.0" newVersion="4.1.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Reflection.Metadata" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Reflection.Metadata" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-1.4.3.0" newVersion="1.4.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-1.4.3.0" newVersion="1.4.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
</runtime>
|
</runtime>
|
||||||
</configuration>
|
</configuration>
|
@ -1,46 +1,46 @@
|
|||||||
# Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
# Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
||||||
|
|
||||||
# This file contains command-line options that the C#
|
# This file contains command-line options that the C#
|
||||||
# command line compiler (CSC) will process as part
|
# command line compiler (CSC) will process as part
|
||||||
# of every compilation, unless the "/noconfig" option
|
# of every compilation, unless the "/noconfig" option
|
||||||
# is specified.
|
# is specified.
|
||||||
|
|
||||||
# Reference the common Framework libraries
|
# Reference the common Framework libraries
|
||||||
/r:Accessibility.dll
|
/r:Accessibility.dll
|
||||||
/r:Microsoft.CSharp.dll
|
/r:Microsoft.CSharp.dll
|
||||||
/r:System.Configuration.dll
|
/r:System.Configuration.dll
|
||||||
/r:System.Configuration.Install.dll
|
/r:System.Configuration.Install.dll
|
||||||
/r:System.Core.dll
|
/r:System.Core.dll
|
||||||
/r:System.Data.dll
|
/r:System.Data.dll
|
||||||
/r:System.Data.DataSetExtensions.dll
|
/r:System.Data.DataSetExtensions.dll
|
||||||
/r:System.Data.Linq.dll
|
/r:System.Data.Linq.dll
|
||||||
/r:System.Data.OracleClient.dll
|
/r:System.Data.OracleClient.dll
|
||||||
/r:System.Deployment.dll
|
/r:System.Deployment.dll
|
||||||
/r:System.Design.dll
|
/r:System.Design.dll
|
||||||
/r:System.DirectoryServices.dll
|
/r:System.DirectoryServices.dll
|
||||||
/r:System.dll
|
/r:System.dll
|
||||||
/r:System.Drawing.Design.dll
|
/r:System.Drawing.Design.dll
|
||||||
/r:System.Drawing.dll
|
/r:System.Drawing.dll
|
||||||
/r:System.EnterpriseServices.dll
|
/r:System.EnterpriseServices.dll
|
||||||
/r:System.Management.dll
|
/r:System.Management.dll
|
||||||
/r:System.Messaging.dll
|
/r:System.Messaging.dll
|
||||||
/r:System.Runtime.Remoting.dll
|
/r:System.Runtime.Remoting.dll
|
||||||
/r:System.Runtime.Serialization.dll
|
/r:System.Runtime.Serialization.dll
|
||||||
/r:System.Runtime.Serialization.Formatters.Soap.dll
|
/r:System.Runtime.Serialization.Formatters.Soap.dll
|
||||||
/r:System.Security.dll
|
/r:System.Security.dll
|
||||||
/r:System.ServiceModel.dll
|
/r:System.ServiceModel.dll
|
||||||
/r:System.ServiceModel.Web.dll
|
/r:System.ServiceModel.Web.dll
|
||||||
/r:System.ServiceProcess.dll
|
/r:System.ServiceProcess.dll
|
||||||
/r:System.Transactions.dll
|
/r:System.Transactions.dll
|
||||||
/r:System.Web.dll
|
/r:System.Web.dll
|
||||||
/r:System.Web.Extensions.Design.dll
|
/r:System.Web.Extensions.Design.dll
|
||||||
/r:System.Web.Extensions.dll
|
/r:System.Web.Extensions.dll
|
||||||
/r:System.Web.Mobile.dll
|
/r:System.Web.Mobile.dll
|
||||||
/r:System.Web.RegularExpressions.dll
|
/r:System.Web.RegularExpressions.dll
|
||||||
/r:System.Web.Services.dll
|
/r:System.Web.Services.dll
|
||||||
/r:System.Windows.Forms.dll
|
/r:System.Windows.Forms.dll
|
||||||
/r:System.Workflow.Activities.dll
|
/r:System.Workflow.Activities.dll
|
||||||
/r:System.Workflow.ComponentModel.dll
|
/r:System.Workflow.ComponentModel.dll
|
||||||
/r:System.Workflow.Runtime.dll
|
/r:System.Workflow.Runtime.dll
|
||||||
/r:System.Xml.dll
|
/r:System.Xml.dll
|
||||||
/r:System.Xml.Linq.dll
|
/r:System.Xml.Linq.dll
|
||||||
|
Binary file not shown.
@ -1,81 +1,81 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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. -->
|
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
|
||||||
<configuration>
|
<configuration>
|
||||||
<startup>
|
<startup>
|
||||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
</startup>
|
</startup>
|
||||||
<runtime>
|
<runtime>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.CodeAnalysis.CSharp" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
<assemblyIdentity name="Microsoft.CodeAnalysis.CSharp" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.CodeAnalysis.CSharp.Scripting" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
<assemblyIdentity name="Microsoft.CodeAnalysis.CSharp.Scripting" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.CodeAnalysis" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
<assemblyIdentity name="Microsoft.CodeAnalysis" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.CodeAnalysis.Scripting" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
<assemblyIdentity name="Microsoft.CodeAnalysis.Scripting" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-1.2.3.0" newVersion="1.2.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-1.2.3.0" newVersion="1.2.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.1.3.0" newVersion="4.1.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.1.3.0" newVersion="4.1.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Reflection.Metadata" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Reflection.Metadata" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-1.4.3.0" newVersion="1.4.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-1.4.3.0" newVersion="1.4.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
</runtime>
|
</runtime>
|
||||||
</configuration>
|
</configuration>
|
Binary file not shown.
@ -1,71 +1,71 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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. -->
|
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
|
||||||
<configuration>
|
<configuration>
|
||||||
<startup>
|
<startup>
|
||||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
</startup>
|
</startup>
|
||||||
<runtime>
|
<runtime>
|
||||||
<gcServer enabled="true" />
|
<gcServer enabled="true" />
|
||||||
<gcConcurrent enabled="false" />
|
<gcConcurrent enabled="false" />
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.CodeAnalysis" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
<assemblyIdentity name="Microsoft.CodeAnalysis" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.CodeAnalysis.VisualBasic" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
<assemblyIdentity name="Microsoft.CodeAnalysis.VisualBasic" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-1.2.3.0" newVersion="1.2.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-1.2.3.0" newVersion="1.2.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.1.3.0" newVersion="4.1.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.1.3.0" newVersion="4.1.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Reflection.Metadata" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Reflection.Metadata" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-1.4.3.0" newVersion="1.4.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-1.4.3.0" newVersion="1.4.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
</runtime>
|
</runtime>
|
||||||
</configuration>
|
</configuration>
|
@ -1,55 +1,55 @@
|
|||||||
# Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
# Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
||||||
|
|
||||||
# This file contains command-line options that the VB
|
# This file contains command-line options that the VB
|
||||||
# command line compiler (VBC) will process as part
|
# command line compiler (VBC) will process as part
|
||||||
# of every compilation, unless the "/noconfig" option
|
# of every compilation, unless the "/noconfig" option
|
||||||
# is specified.
|
# is specified.
|
||||||
|
|
||||||
# Reference the common Framework libraries
|
# Reference the common Framework libraries
|
||||||
/r:Accessibility.dll
|
/r:Accessibility.dll
|
||||||
/r:System.Configuration.dll
|
/r:System.Configuration.dll
|
||||||
/r:System.Configuration.Install.dll
|
/r:System.Configuration.Install.dll
|
||||||
/r:System.Data.dll
|
/r:System.Data.dll
|
||||||
/r:System.Data.OracleClient.dll
|
/r:System.Data.OracleClient.dll
|
||||||
/r:System.Deployment.dll
|
/r:System.Deployment.dll
|
||||||
/r:System.Design.dll
|
/r:System.Design.dll
|
||||||
/r:System.DirectoryServices.dll
|
/r:System.DirectoryServices.dll
|
||||||
/r:System.dll
|
/r:System.dll
|
||||||
/r:System.Drawing.Design.dll
|
/r:System.Drawing.Design.dll
|
||||||
/r:System.Drawing.dll
|
/r:System.Drawing.dll
|
||||||
/r:System.EnterpriseServices.dll
|
/r:System.EnterpriseServices.dll
|
||||||
/r:System.Management.dll
|
/r:System.Management.dll
|
||||||
/r:System.Messaging.dll
|
/r:System.Messaging.dll
|
||||||
/r:System.Runtime.Remoting.dll
|
/r:System.Runtime.Remoting.dll
|
||||||
/r:System.Runtime.Serialization.Formatters.Soap.dll
|
/r:System.Runtime.Serialization.Formatters.Soap.dll
|
||||||
/r:System.Security.dll
|
/r:System.Security.dll
|
||||||
/r:System.ServiceProcess.dll
|
/r:System.ServiceProcess.dll
|
||||||
/r:System.Transactions.dll
|
/r:System.Transactions.dll
|
||||||
/r:System.Web.dll
|
/r:System.Web.dll
|
||||||
/r:System.Web.Mobile.dll
|
/r:System.Web.Mobile.dll
|
||||||
/r:System.Web.RegularExpressions.dll
|
/r:System.Web.RegularExpressions.dll
|
||||||
/r:System.Web.Services.dll
|
/r:System.Web.Services.dll
|
||||||
/r:System.Windows.Forms.dll
|
/r:System.Windows.Forms.dll
|
||||||
/r:System.Xml.dll
|
/r:System.Xml.dll
|
||||||
|
|
||||||
/r:System.Workflow.Activities.dll
|
/r:System.Workflow.Activities.dll
|
||||||
/r:System.Workflow.ComponentModel.dll
|
/r:System.Workflow.ComponentModel.dll
|
||||||
/r:System.Workflow.Runtime.dll
|
/r:System.Workflow.Runtime.dll
|
||||||
/r:System.Runtime.Serialization.dll
|
/r:System.Runtime.Serialization.dll
|
||||||
/r:System.ServiceModel.dll
|
/r:System.ServiceModel.dll
|
||||||
|
|
||||||
/r:System.Core.dll
|
/r:System.Core.dll
|
||||||
/r:System.Xml.Linq.dll
|
/r:System.Xml.Linq.dll
|
||||||
/r:System.Data.Linq.dll
|
/r:System.Data.Linq.dll
|
||||||
/r:System.Data.DataSetExtensions.dll
|
/r:System.Data.DataSetExtensions.dll
|
||||||
/r:System.Web.Extensions.dll
|
/r:System.Web.Extensions.dll
|
||||||
/r:System.Web.Extensions.Design.dll
|
/r:System.Web.Extensions.Design.dll
|
||||||
/r:System.ServiceModel.Web.dll
|
/r:System.ServiceModel.Web.dll
|
||||||
|
|
||||||
# Import System and Microsoft.VisualBasic
|
# Import System and Microsoft.VisualBasic
|
||||||
/imports:System
|
/imports:System
|
||||||
/imports:Microsoft.VisualBasic
|
/imports:Microsoft.VisualBasic
|
||||||
/imports:System.Linq
|
/imports:System.Linq
|
||||||
/imports:System.Xml.Linq
|
/imports:System.Xml.Linq
|
||||||
|
|
||||||
/optioninfer+
|
/optioninfer+
|
||||||
|
@ -41,7 +41,7 @@ static partial class Consts
|
|||||||
// Use these assembly version constants to make code more maintainable.
|
// Use these assembly version constants to make code more maintainable.
|
||||||
//
|
//
|
||||||
|
|
||||||
public const string MonoVersion = "6.4.0.196";
|
public const string MonoVersion = "6.4.0.198";
|
||||||
public const string MonoCompany = "Mono development team";
|
public const string MonoCompany = "Mono development team";
|
||||||
public const string MonoProduct = "Mono Common Language Infrastructure";
|
public const string MonoProduct = "Mono Common Language Infrastructure";
|
||||||
public const string MonoCopyright = "(c) Various Mono authors";
|
public const string MonoCopyright = "(c) Various Mono authors";
|
||||||
|
@ -128,7 +128,7 @@ $(test_nunit_dep): $(topdir)/build/deps/nunit-$(PROFILE).stamp
|
|||||||
@if test -f $@; then :; else rm -f $<; $(MAKE) $<; fi
|
@if test -f $@; then :; else rm -f $<; $(MAKE) $<; fi
|
||||||
|
|
||||||
$(topdir)/build/deps/nunit-$(PROFILE).stamp:
|
$(topdir)/build/deps/nunit-$(PROFILE).stamp:
|
||||||
cd ${topdir}/tools/nunit-lite && $(MAKE)
|
$(MAKE) -C ${topdir}/tools/nunit-lite
|
||||||
echo "stamp" >$@
|
echo "stamp" >$@
|
||||||
|
|
||||||
tests_CLEAN_FILES += $(topdir)/build/deps/nunit-$(PROFILE).stamp
|
tests_CLEAN_FILES += $(topdir)/build/deps/nunit-$(PROFILE).stamp
|
||||||
@ -378,5 +378,3 @@ $(xtest_makefrag): $(xtest_response)
|
|||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
.PHONY: patch-nunitlite-appconfig
|
|
||||||
|
@ -232,7 +232,7 @@ TEST_RESOURCES = $(TEST_RESX_RESOURCES) $(TEST_RESX_RESOURCES_SATELITE)
|
|||||||
satellite_assembly1 = $(test_lib_dir)/es-ES/$(patsubst %.dll,%.resources.dll,$(test_lib))
|
satellite_assembly1 = $(test_lib_dir)/es-ES/$(patsubst %.dll,%.resources.dll,$(test_lib))
|
||||||
satellite_assembly2 = $(test_lib_dir)/nn-NO/$(patsubst %.dll,%.resources.dll,$(test_lib))
|
satellite_assembly2 = $(test_lib_dir)/nn-NO/$(patsubst %.dll,%.resources.dll,$(test_lib))
|
||||||
|
|
||||||
$(test_lib_output): $(TEST_RESOURCES) $(satellite_assembly1) $(satellite_assembly2) $(test_lib_dir)
|
$(test_lib_output): $(TEST_RESOURCES) $(satellite_assembly1) $(satellite_assembly2) | $(test_lib_dir)
|
||||||
|
|
||||||
mscorlib_for_profile = $(topdir)/class/lib/$(PROFILE)/mscorlib.dll
|
mscorlib_for_profile = $(topdir)/class/lib/$(PROFILE)/mscorlib.dll
|
||||||
|
|
||||||
@ -298,11 +298,8 @@ NO_VTS_TEST = yes
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifndef NO_VTS_TEST
|
ifndef NO_VTS_TEST
|
||||||
test: test-vts
|
test-local: test-vts
|
||||||
run-test: run-test-vts
|
run-test-local: run-test-vts
|
||||||
else
|
|
||||||
test:
|
|
||||||
run-test:
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
EXTRA_DISTFILES += \
|
EXTRA_DISTFILES += \
|
||||||
|
@ -1 +1 @@
|
|||||||
defb30ebe68510ef624f201b78a1028b8900ef49
|
45c50045e75dd4480779db3db23bb0a99f7a7b4d
|
@ -1 +1 @@
|
|||||||
86bef9eafbbf4ee5cfbc43f0f8fb7b371415fa91
|
b7600bfa57ee348aba573d4944bc2c33628c9bf8
|
@ -1 +1 @@
|
|||||||
89d2a7ab3c828aafc9a2b9e7581db77940064b96
|
d3b99f8ef215d2b9fd0d260ae329fbafdf379340
|
@ -1 +1 @@
|
|||||||
234254303adeba4b9f394653c1c63ef3c7dd2a46
|
3e51bb7a3cbd10b1fd945cf2c7d9cca7627e429e
|
@ -1 +1 @@
|
|||||||
7fb14ac8cefe2fd4034726a9372a63bf49c75ded
|
8b25a5ac750045c15e7e07b5ea0f3875a0da25ac
|
@ -1 +1 @@
|
|||||||
8368316fc81d4e3991f72833420dd97a2eab4207
|
399540d6327a1fc163eee88584e1c4b56237a604
|
@ -1 +1 @@
|
|||||||
42ba836f633e19bc4b970cc91d11d5eb3eb75e28
|
ea56a79f899249fb36db4b4243d5bdcfaa726093
|
@ -1 +1 @@
|
|||||||
defb30ebe68510ef624f201b78a1028b8900ef49
|
45c50045e75dd4480779db3db23bb0a99f7a7b4d
|
@ -1 +1 @@
|
|||||||
86bef9eafbbf4ee5cfbc43f0f8fb7b371415fa91
|
b7600bfa57ee348aba573d4944bc2c33628c9bf8
|
@ -1 +1 @@
|
|||||||
89d2a7ab3c828aafc9a2b9e7581db77940064b96
|
d3b99f8ef215d2b9fd0d260ae329fbafdf379340
|
@ -1 +1 @@
|
|||||||
234254303adeba4b9f394653c1c63ef3c7dd2a46
|
3e51bb7a3cbd10b1fd945cf2c7d9cca7627e429e
|
@ -1 +1 @@
|
|||||||
7fb14ac8cefe2fd4034726a9372a63bf49c75ded
|
8b25a5ac750045c15e7e07b5ea0f3875a0da25ac
|
@ -1 +1 @@
|
|||||||
8368316fc81d4e3991f72833420dd97a2eab4207
|
399540d6327a1fc163eee88584e1c4b56237a604
|
@ -1 +1 @@
|
|||||||
d09d094feed27b627df1d39f7213d3a63e13d0f9
|
13a1d38086cdc582aa0408e10b3191a7e155c40f
|
@ -1 +1 @@
|
|||||||
42ba836f633e19bc4b970cc91d11d5eb3eb75e28
|
ea56a79f899249fb36db4b4243d5bdcfaa726093
|
@ -1 +1 @@
|
|||||||
defb30ebe68510ef624f201b78a1028b8900ef49
|
45c50045e75dd4480779db3db23bb0a99f7a7b4d
|
@ -1 +1 @@
|
|||||||
86bef9eafbbf4ee5cfbc43f0f8fb7b371415fa91
|
b7600bfa57ee348aba573d4944bc2c33628c9bf8
|
@ -1 +1 @@
|
|||||||
89d2a7ab3c828aafc9a2b9e7581db77940064b96
|
d3b99f8ef215d2b9fd0d260ae329fbafdf379340
|
@ -1 +1 @@
|
|||||||
234254303adeba4b9f394653c1c63ef3c7dd2a46
|
3e51bb7a3cbd10b1fd945cf2c7d9cca7627e429e
|
@ -1 +1 @@
|
|||||||
7fb14ac8cefe2fd4034726a9372a63bf49c75ded
|
8b25a5ac750045c15e7e07b5ea0f3875a0da25ac
|
@ -1 +1 @@
|
|||||||
8368316fc81d4e3991f72833420dd97a2eab4207
|
399540d6327a1fc163eee88584e1c4b56237a604
|
@ -1 +1 @@
|
|||||||
d09d094feed27b627df1d39f7213d3a63e13d0f9
|
13a1d38086cdc582aa0408e10b3191a7e155c40f
|
@ -1 +1 @@
|
|||||||
42ba836f633e19bc4b970cc91d11d5eb3eb75e28
|
ea56a79f899249fb36db4b4243d5bdcfaa726093
|
@ -1 +1 @@
|
|||||||
defb30ebe68510ef624f201b78a1028b8900ef49
|
45c50045e75dd4480779db3db23bb0a99f7a7b4d
|
@ -1 +1 @@
|
|||||||
86bef9eafbbf4ee5cfbc43f0f8fb7b371415fa91
|
b7600bfa57ee348aba573d4944bc2c33628c9bf8
|
@ -1 +1 @@
|
|||||||
75f6c4135c7af76cb351857ec1d84ab54ac6465e
|
dcf4ff01b1f09f48598d3b46f416adb2b2ec665d
|
@ -1 +1 @@
|
|||||||
234254303adeba4b9f394653c1c63ef3c7dd2a46
|
3e51bb7a3cbd10b1fd945cf2c7d9cca7627e429e
|
@ -1 +1 @@
|
|||||||
7fb14ac8cefe2fd4034726a9372a63bf49c75ded
|
8b25a5ac750045c15e7e07b5ea0f3875a0da25ac
|
@ -1 +1 @@
|
|||||||
8368316fc81d4e3991f72833420dd97a2eab4207
|
399540d6327a1fc163eee88584e1c4b56237a604
|
@ -1 +1 @@
|
|||||||
d09d094feed27b627df1d39f7213d3a63e13d0f9
|
13a1d38086cdc582aa0408e10b3191a7e155c40f
|
@ -1 +1 @@
|
|||||||
dae7dc2a54ac5939b1ff8f5369b320d0c1010510
|
3e630fb8f749f7685b6aefaf94a48afe31cde73d
|
@ -1 +1 @@
|
|||||||
6e6d55fa6d4563c2ddecff090b26326917348ee8
|
2f3a0a269516161cf0c1c068ede37d582066b993
|
@ -1,146 +1,146 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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. -->
|
<!-- 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 ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<Import Project="Microsoft.Managed.Core.targets"/>
|
<Import Project="Microsoft.Managed.Core.targets"/>
|
||||||
|
|
||||||
<PropertyGroup Condition="('$(TargetFrameworkIdentifier)' != '.NETCoreApp' OR '$(TargetFrameworkVersion)' != 'v3.0') AND
|
<PropertyGroup Condition="('$(TargetFrameworkIdentifier)' != '.NETCoreApp' OR '$(TargetFrameworkVersion)' != 'v3.0') AND
|
||||||
('$(TargetFrameworkIdentifier)' != '.NETStandard' OR '$(TargetFrameworkVersion)' != 'v2.1')">
|
('$(TargetFrameworkIdentifier)' != '.NETStandard' OR '$(TargetFrameworkVersion)' != 'v2.1')">
|
||||||
<MaxSupportedLangVersion Condition="'$(MaxSupportedLangVersion)' == ''">7.3</MaxSupportedLangVersion>
|
<MaxSupportedLangVersion Condition="'$(MaxSupportedLangVersion)' == ''">7.3</MaxSupportedLangVersion>
|
||||||
<LangVersion Condition="'$(LangVersion)' == ''">$(MaxSupportedLangVersion)</LangVersion>
|
<LangVersion Condition="'$(LangVersion)' == ''">$(MaxSupportedLangVersion)</LangVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<Target Name="CoreCompile"
|
<Target Name="CoreCompile"
|
||||||
Inputs="$(MSBuildAllProjects);
|
Inputs="$(MSBuildAllProjects);
|
||||||
@(Compile);
|
@(Compile);
|
||||||
@(_CoreCompileResourceInputs);
|
@(_CoreCompileResourceInputs);
|
||||||
$(ApplicationIcon);
|
$(ApplicationIcon);
|
||||||
$(AssemblyOriginatorKeyFile);
|
$(AssemblyOriginatorKeyFile);
|
||||||
@(ReferencePathWithRefAssemblies);
|
@(ReferencePathWithRefAssemblies);
|
||||||
@(CompiledLicenseFile);
|
@(CompiledLicenseFile);
|
||||||
@(LinkResource);
|
@(LinkResource);
|
||||||
@(EmbeddedDocumentation);
|
@(EmbeddedDocumentation);
|
||||||
$(Win32Resource);
|
$(Win32Resource);
|
||||||
$(Win32Manifest);
|
$(Win32Manifest);
|
||||||
@(CustomAdditionalCompileInputs);
|
@(CustomAdditionalCompileInputs);
|
||||||
$(ResolvedCodeAnalysisRuleSet);
|
$(ResolvedCodeAnalysisRuleSet);
|
||||||
@(AdditionalFiles);
|
@(AdditionalFiles);
|
||||||
@(EmbeddedFiles);
|
@(EmbeddedFiles);
|
||||||
@(EditorConfigFiles)"
|
@(EditorConfigFiles)"
|
||||||
Outputs="@(DocFileItem);
|
Outputs="@(DocFileItem);
|
||||||
@(IntermediateAssembly);
|
@(IntermediateAssembly);
|
||||||
@(IntermediateRefAssembly);
|
@(IntermediateRefAssembly);
|
||||||
@(_DebugSymbolsIntermediatePath);
|
@(_DebugSymbolsIntermediatePath);
|
||||||
$(NonExistentFile);
|
$(NonExistentFile);
|
||||||
@(CustomAdditionalCompileOutputs)"
|
@(CustomAdditionalCompileOutputs)"
|
||||||
Returns="@(CscCommandLineArgs)"
|
Returns="@(CscCommandLineArgs)"
|
||||||
DependsOnTargets="$(CoreCompileDependsOn);_BeforeVBCSCoreCompile">
|
DependsOnTargets="$(CoreCompileDependsOn);_BeforeVBCSCoreCompile">
|
||||||
<!-- These two compiler warnings are raised when a reference is bound to a different version
|
<!-- These two compiler warnings are raised when a reference is bound to a different version
|
||||||
than specified in the assembly reference version number. MSBuild raises the same warning in this case,
|
than specified in the assembly reference version number. MSBuild raises the same warning in this case,
|
||||||
so the compiler warning would be redundant. -->
|
so the compiler warning would be redundant. -->
|
||||||
<PropertyGroup Condition="('$(TargetFrameworkVersion)' != 'v1.0') and ('$(TargetFrameworkVersion)' != 'v1.1')">
|
<PropertyGroup Condition="('$(TargetFrameworkVersion)' != 'v1.0') and ('$(TargetFrameworkVersion)' != 'v1.1')">
|
||||||
<NoWarn>$(NoWarn);1701;1702</NoWarn>
|
<NoWarn>$(NoWarn);1701;1702</NoWarn>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<!-- To match historical behavior, when inside VS11+ disable the warning from csc.exe indicating that no sources were passed in-->
|
<!-- To match historical behavior, when inside VS11+ disable the warning from csc.exe indicating that no sources were passed in-->
|
||||||
<NoWarn Condition="'$(BuildingInsideVisualStudio)' == 'true' AND '$(VisualStudioVersion)' != '' AND '$(VisualStudioVersion)' > '10.0'">$(NoWarn);2008</NoWarn>
|
<NoWarn Condition="'$(BuildingInsideVisualStudio)' == 'true' AND '$(VisualStudioVersion)' != '' AND '$(VisualStudioVersion)' > '10.0'">$(NoWarn);2008</NoWarn>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<!-- If the user has specified AppConfigForCompiler, we'll use it. If they have not, but they set UseAppConfigForCompiler,
|
<!-- If the user has specified AppConfigForCompiler, we'll use it. If they have not, but they set UseAppConfigForCompiler,
|
||||||
then we'll use AppConfig -->
|
then we'll use AppConfig -->
|
||||||
<AppConfigForCompiler Condition="'$(AppConfigForCompiler)' == '' AND '$(UseAppConfigForCompiler)' == 'true'">$(AppConfig)</AppConfigForCompiler>
|
<AppConfigForCompiler Condition="'$(AppConfigForCompiler)' == '' AND '$(UseAppConfigForCompiler)' == 'true'">$(AppConfig)</AppConfigForCompiler>
|
||||||
|
|
||||||
<!-- If we are targeting winmdobj we want to specifically the pdbFile property since we do not want it to collide with the output of winmdexp-->
|
<!-- If we are targeting winmdobj we want to specifically the pdbFile property since we do not want it to collide with the output of winmdexp-->
|
||||||
<PdbFile Condition="'$(PdbFile)' == '' AND '$(OutputType)' == 'winmdobj' AND '$(_DebugSymbolsProduced)' == 'true'">$(IntermediateOutputPath)$(TargetName).compile.pdb</PdbFile>
|
<PdbFile Condition="'$(PdbFile)' == '' AND '$(OutputType)' == 'winmdobj' AND '$(_DebugSymbolsProduced)' == 'true'">$(IntermediateOutputPath)$(TargetName).compile.pdb</PdbFile>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- Condition is to filter out the _CoreCompileResourceInputs so that it doesn't pass in culture resources to the compiler -->
|
<!-- Condition is to filter out the _CoreCompileResourceInputs so that it doesn't pass in culture resources to the compiler -->
|
||||||
<Csc Condition="'%(_CoreCompileResourceInputs.WithCulture)' != 'true'"
|
<Csc Condition="'%(_CoreCompileResourceInputs.WithCulture)' != 'true'"
|
||||||
AdditionalLibPaths="$(AdditionalLibPaths)"
|
AdditionalLibPaths="$(AdditionalLibPaths)"
|
||||||
AddModules="@(AddModules)"
|
AddModules="@(AddModules)"
|
||||||
AdditionalFiles="@(AdditionalFiles)"
|
AdditionalFiles="@(AdditionalFiles)"
|
||||||
AllowUnsafeBlocks="$(AllowUnsafeBlocks)"
|
AllowUnsafeBlocks="$(AllowUnsafeBlocks)"
|
||||||
AnalyzerConfigFiles="@(EditorConfigFiles)"
|
AnalyzerConfigFiles="@(EditorConfigFiles)"
|
||||||
Analyzers="@(Analyzer)"
|
Analyzers="@(Analyzer)"
|
||||||
ApplicationConfiguration="$(AppConfigForCompiler)"
|
ApplicationConfiguration="$(AppConfigForCompiler)"
|
||||||
BaseAddress="$(BaseAddress)"
|
BaseAddress="$(BaseAddress)"
|
||||||
CheckForOverflowUnderflow="$(CheckForOverflowUnderflow)"
|
CheckForOverflowUnderflow="$(CheckForOverflowUnderflow)"
|
||||||
ChecksumAlgorithm="$(ChecksumAlgorithm)"
|
ChecksumAlgorithm="$(ChecksumAlgorithm)"
|
||||||
CodeAnalysisRuleSet="$(ResolvedCodeAnalysisRuleSet)"
|
CodeAnalysisRuleSet="$(ResolvedCodeAnalysisRuleSet)"
|
||||||
CodePage="$(CodePage)"
|
CodePage="$(CodePage)"
|
||||||
DebugType="$(DebugType)"
|
DebugType="$(DebugType)"
|
||||||
DefineConstants="$(DefineConstants)"
|
DefineConstants="$(DefineConstants)"
|
||||||
DelaySign="$(DelaySign)"
|
DelaySign="$(DelaySign)"
|
||||||
DisabledWarnings="$(NoWarn)"
|
DisabledWarnings="$(NoWarn)"
|
||||||
DisableSdkPath="$(DisableSdkPath)"
|
DisableSdkPath="$(DisableSdkPath)"
|
||||||
DocumentationFile="@(DocFileItem)"
|
DocumentationFile="@(DocFileItem)"
|
||||||
EmbedAllSources="$(EmbedAllSources)"
|
EmbedAllSources="$(EmbedAllSources)"
|
||||||
EmbeddedFiles="@(EmbeddedFiles)"
|
EmbeddedFiles="@(EmbeddedFiles)"
|
||||||
EmitDebugInformation="$(DebugSymbols)"
|
EmitDebugInformation="$(DebugSymbols)"
|
||||||
EnvironmentVariables="$(CscEnvironment)"
|
EnvironmentVariables="$(CscEnvironment)"
|
||||||
ErrorEndLocation="$(ErrorEndLocation)"
|
ErrorEndLocation="$(ErrorEndLocation)"
|
||||||
ErrorLog="$(ErrorLog)"
|
ErrorLog="$(ErrorLog)"
|
||||||
ErrorReport="$(ErrorReport)"
|
ErrorReport="$(ErrorReport)"
|
||||||
Features="$(Features)"
|
Features="$(Features)"
|
||||||
FileAlignment="$(FileAlignment)"
|
FileAlignment="$(FileAlignment)"
|
||||||
GenerateFullPaths="$(GenerateFullPaths)"
|
GenerateFullPaths="$(GenerateFullPaths)"
|
||||||
HighEntropyVA="$(HighEntropyVA)"
|
HighEntropyVA="$(HighEntropyVA)"
|
||||||
Instrument="$(Instrument)"
|
Instrument="$(Instrument)"
|
||||||
KeyContainer="$(KeyContainerName)"
|
KeyContainer="$(KeyContainerName)"
|
||||||
KeyFile="$(KeyOriginatorFile)"
|
KeyFile="$(KeyOriginatorFile)"
|
||||||
LangVersion="$(LangVersion)"
|
LangVersion="$(LangVersion)"
|
||||||
LinkResources="@(LinkResource)"
|
LinkResources="@(LinkResource)"
|
||||||
MainEntryPoint="$(StartupObject)"
|
MainEntryPoint="$(StartupObject)"
|
||||||
ModuleAssemblyName="$(ModuleAssemblyName)"
|
ModuleAssemblyName="$(ModuleAssemblyName)"
|
||||||
NoConfig="true"
|
NoConfig="true"
|
||||||
NoLogo="$(NoLogo)"
|
NoLogo="$(NoLogo)"
|
||||||
NoStandardLib="$(NoCompilerStandardLib)"
|
NoStandardLib="$(NoCompilerStandardLib)"
|
||||||
NoWin32Manifest="$(NoWin32Manifest)"
|
NoWin32Manifest="$(NoWin32Manifest)"
|
||||||
Nullable="$(Nullable)"
|
Nullable="$(Nullable)"
|
||||||
Optimize="$(Optimize)"
|
Optimize="$(Optimize)"
|
||||||
Deterministic="$(Deterministic)"
|
Deterministic="$(Deterministic)"
|
||||||
PublicSign="$(PublicSign)"
|
PublicSign="$(PublicSign)"
|
||||||
OutputAssembly="@(IntermediateAssembly)"
|
OutputAssembly="@(IntermediateAssembly)"
|
||||||
OutputRefAssembly="@(IntermediateRefAssembly)"
|
OutputRefAssembly="@(IntermediateRefAssembly)"
|
||||||
PdbFile="$(PdbFile)"
|
PdbFile="$(PdbFile)"
|
||||||
Platform="$(PlatformTarget)"
|
Platform="$(PlatformTarget)"
|
||||||
Prefer32Bit="$(Prefer32Bit)"
|
Prefer32Bit="$(Prefer32Bit)"
|
||||||
PreferredUILang="$(PreferredUILang)"
|
PreferredUILang="$(PreferredUILang)"
|
||||||
ProvideCommandLineArgs="$(ProvideCommandLineArgs)"
|
ProvideCommandLineArgs="$(ProvideCommandLineArgs)"
|
||||||
References="@(ReferencePathWithRefAssemblies)"
|
References="@(ReferencePathWithRefAssemblies)"
|
||||||
RefOnly="$(ProduceOnlyReferenceAssembly)"
|
RefOnly="$(ProduceOnlyReferenceAssembly)"
|
||||||
ReportAnalyzer="$(ReportAnalyzer)"
|
ReportAnalyzer="$(ReportAnalyzer)"
|
||||||
Resources="@(_CoreCompileResourceInputs);@(CompiledLicenseFile)"
|
Resources="@(_CoreCompileResourceInputs);@(CompiledLicenseFile)"
|
||||||
ResponseFiles="$(CompilerResponseFile)"
|
ResponseFiles="$(CompilerResponseFile)"
|
||||||
RuntimeMetadataVersion="$(RuntimeMetadataVersion)"
|
RuntimeMetadataVersion="$(RuntimeMetadataVersion)"
|
||||||
SharedCompilationId="$(SharedCompilationId)"
|
SharedCompilationId="$(SharedCompilationId)"
|
||||||
SkipCompilerExecution="$(SkipCompilerExecution)"
|
SkipCompilerExecution="$(SkipCompilerExecution)"
|
||||||
Sources="@(Compile)"
|
Sources="@(Compile)"
|
||||||
SubsystemVersion="$(SubsystemVersion)"
|
SubsystemVersion="$(SubsystemVersion)"
|
||||||
TargetType="$(OutputType)"
|
TargetType="$(OutputType)"
|
||||||
ToolExe="$(CscToolExe)"
|
ToolExe="$(CscToolExe)"
|
||||||
ToolPath="$(CscToolPath)"
|
ToolPath="$(CscToolPath)"
|
||||||
TreatWarningsAsErrors="$(TreatWarningsAsErrors)"
|
TreatWarningsAsErrors="$(TreatWarningsAsErrors)"
|
||||||
UseHostCompilerIfAvailable="$(UseHostCompilerIfAvailable)"
|
UseHostCompilerIfAvailable="$(UseHostCompilerIfAvailable)"
|
||||||
UseSharedCompilation="$(UseSharedCompilation)"
|
UseSharedCompilation="$(UseSharedCompilation)"
|
||||||
Utf8Output="$(Utf8Output)"
|
Utf8Output="$(Utf8Output)"
|
||||||
VsSessionGuid="$(VsSessionGuid)"
|
VsSessionGuid="$(VsSessionGuid)"
|
||||||
WarningLevel="$(WarningLevel)"
|
WarningLevel="$(WarningLevel)"
|
||||||
WarningsAsErrors="$(WarningsAsErrors)"
|
WarningsAsErrors="$(WarningsAsErrors)"
|
||||||
WarningsNotAsErrors="$(WarningsNotAsErrors)"
|
WarningsNotAsErrors="$(WarningsNotAsErrors)"
|
||||||
Win32Icon="$(ApplicationIcon)"
|
Win32Icon="$(ApplicationIcon)"
|
||||||
Win32Manifest="$(Win32Manifest)"
|
Win32Manifest="$(Win32Manifest)"
|
||||||
Win32Resource="$(Win32Resource)"
|
Win32Resource="$(Win32Resource)"
|
||||||
PathMap="$(PathMap)"
|
PathMap="$(PathMap)"
|
||||||
SourceLink="$(SourceLink)">
|
SourceLink="$(SourceLink)">
|
||||||
<Output TaskParameter="CommandLineArgs" ItemName="CscCommandLineArgs" />
|
<Output TaskParameter="CommandLineArgs" ItemName="CscCommandLineArgs" />
|
||||||
</Csc>
|
</Csc>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<_CoreCompileResourceInputs Remove="@(_CoreCompileResourceInputs)" />
|
<_CoreCompileResourceInputs Remove="@(_CoreCompileResourceInputs)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<CallTarget Targets="$(TargetsTriggeredByCompilation)" Condition="'$(TargetsTriggeredByCompilation)' != ''" />
|
<CallTarget Targets="$(TargetsTriggeredByCompilation)" Condition="'$(TargetsTriggeredByCompilation)' != ''" />
|
||||||
</Target>
|
</Target>
|
||||||
</Project>
|
</Project>
|
Binary file not shown.
@ -1 +1 @@
|
|||||||
d3a0d2895d543df718c1dd8091fd295179af0716
|
f10654379c9f8c1ded91fafb333406075b370713
|
@ -1 +1 @@
|
|||||||
4b5c6518a0432f48b1f5b33a7a60179fb7c92f59
|
ee7438011f35265e69c71ff4b51fe4ea71cf08cb
|
@ -1 +1 @@
|
|||||||
6655ed33fc7ab0841ddc1d568523d5e939a9cdb8
|
eb647c7c2862ae76b6456f73e918ee5c85608d1c
|
@ -1 +1 @@
|
|||||||
5e168fa3218ec251c4329e301b60e3bf226fb236
|
32289bf324fb4ea7107cc227d79948830378f0b1
|
@ -1,167 +1,167 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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. -->
|
<!-- 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 ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<!--
|
<!--
|
||||||
Common targets for managed compilers.
|
Common targets for managed compilers.
|
||||||
-->
|
-->
|
||||||
<UsingTask TaskName="Microsoft.CodeAnalysis.BuildTasks.MapSourceRoots" AssemblyFile="$(MSBuildThisFileDirectory)Microsoft.Build.Tasks.CodeAnalysis.dll" />
|
<UsingTask TaskName="Microsoft.CodeAnalysis.BuildTasks.MapSourceRoots" AssemblyFile="$(MSBuildThisFileDirectory)Microsoft.Build.Tasks.CodeAnalysis.dll" />
|
||||||
|
|
||||||
<Target Name="ShimReferencePathsWhenCommonTargetsDoesNotUnderstandReferenceAssemblies"
|
<Target Name="ShimReferencePathsWhenCommonTargetsDoesNotUnderstandReferenceAssemblies"
|
||||||
BeforeTargets="CoreCompile"
|
BeforeTargets="CoreCompile"
|
||||||
Condition="'@(ReferencePathWithRefAssemblies)' == ''">
|
Condition="'@(ReferencePathWithRefAssemblies)' == ''">
|
||||||
<!--
|
<!--
|
||||||
FindReferenceAssembliesForReferences target in Common targets populate this item
|
FindReferenceAssembliesForReferences target in Common targets populate this item
|
||||||
since dev15.3. The compiler targets may be used (via NuGet package) on earlier MSBuilds.
|
since dev15.3. The compiler targets may be used (via NuGet package) on earlier MSBuilds.
|
||||||
If the ReferencePathWithRefAssemblies item is not populated, just use ReferencePaths
|
If the ReferencePathWithRefAssemblies item is not populated, just use ReferencePaths
|
||||||
(implementation assemblies) as they are.
|
(implementation assemblies) as they are.
|
||||||
|
|
||||||
Since XAML inner build runs CoreCompile directly (instead of Compile target),
|
Since XAML inner build runs CoreCompile directly (instead of Compile target),
|
||||||
it also doesn't invoke FindReferenceAssembliesForReferences listed in CompileDependsOn.
|
it also doesn't invoke FindReferenceAssembliesForReferences listed in CompileDependsOn.
|
||||||
In that case we also populate ReferencePathWithRefAssemblies with implementation assemblies.
|
In that case we also populate ReferencePathWithRefAssemblies with implementation assemblies.
|
||||||
-->
|
-->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ReferencePathWithRefAssemblies Include="@(ReferencePath)" />
|
<ReferencePathWithRefAssemblies Include="@(ReferencePath)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<Target Name="_BeforeVBCSCoreCompile"
|
<Target Name="_BeforeVBCSCoreCompile"
|
||||||
DependsOnTargets="ShimReferencePathsWhenCommonTargetsDoesNotUnderstandReferenceAssemblies">
|
DependsOnTargets="ShimReferencePathsWhenCommonTargetsDoesNotUnderstandReferenceAssemblies">
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetingClr2Framework)' == 'true'">
|
<ItemGroup Condition="'$(TargetingClr2Framework)' == 'true'">
|
||||||
<ReferencePathWithRefAssemblies>
|
<ReferencePathWithRefAssemblies>
|
||||||
<EmbedInteropTypes />
|
<EmbedInteropTypes />
|
||||||
</ReferencePathWithRefAssemblies>
|
</ReferencePathWithRefAssemblies>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<!-- Prefer32Bit was introduced in .NET 4.5. Set it to false if we are targeting 4.0 -->
|
<!-- Prefer32Bit was introduced in .NET 4.5. Set it to false if we are targeting 4.0 -->
|
||||||
<PropertyGroup Condition="('$(TargetFrameworkVersion)' == 'v4.0')">
|
<PropertyGroup Condition="('$(TargetFrameworkVersion)' == 'v4.0')">
|
||||||
<Prefer32Bit>false</Prefer32Bit>
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- TODO: Remove this ItemGroup once it has been moved to "_GenerateCompileInputs" target in Microsoft.Common.CurrentVersion.targets.
|
<!-- TODO: Remove this ItemGroup once it has been moved to "_GenerateCompileInputs" target in Microsoft.Common.CurrentVersion.targets.
|
||||||
https://github.com/dotnet/roslyn/issues/12223 -->
|
https://github.com/dotnet/roslyn/issues/12223 -->
|
||||||
<ItemGroup Condition="('$(AdditionalFileItemNames)' != '')">
|
<ItemGroup Condition="('$(AdditionalFileItemNames)' != '')">
|
||||||
<AdditionalFileItems Include="$(AdditionalFileItemNames)" />
|
<AdditionalFileItems Include="$(AdditionalFileItemNames)" />
|
||||||
<AdditionalFiles Include="@(%(AdditionalFileItems.Identity))" />
|
<AdditionalFiles Include="@(%(AdditionalFileItems.Identity))" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(UseSharedCompilation)' == ''">
|
<PropertyGroup Condition="'$(UseSharedCompilation)' == ''">
|
||||||
<UseSharedCompilation>true</UseSharedCompilation>
|
<UseSharedCompilation>true</UseSharedCompilation>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
========================
|
========================
|
||||||
.editorconfig Support
|
.editorconfig Support
|
||||||
========================
|
========================
|
||||||
|
|
||||||
The discovery of .editorconfig files depends on MSBuild features only available in version 16.1 and later. To avoid evaluation errors when
|
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.
|
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.
|
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" />
|
<Import Project="Microsoft.Managed.EditorConfig.targets" Condition="$(MSBuildVersion) >= 16.1.0" />
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
========================
|
========================
|
||||||
DeterministicSourcePaths
|
DeterministicSourcePaths
|
||||||
========================
|
========================
|
||||||
|
|
||||||
Unless specified otherwise enable deterministic source root (PathMap) when building deterministically on CI server, but not for local builds.
|
Unless specified otherwise enable deterministic source root (PathMap) when building deterministically on CI server, but not for local builds.
|
||||||
In order for the debugger to find source files when debugging a locally built binary the PDB must contain original, unmapped local paths.
|
In order for the debugger to find source files when debugging a locally built binary the PDB must contain original, unmapped local paths.
|
||||||
-->
|
-->
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<DeterministicSourcePaths Condition="'$(DeterministicSourcePaths)' == '' and '$(Deterministic)' == 'true' and '$(ContinuousIntegrationBuild)' == 'true'">true</DeterministicSourcePaths>
|
<DeterministicSourcePaths Condition="'$(DeterministicSourcePaths)' == '' and '$(Deterministic)' == 'true' and '$(ContinuousIntegrationBuild)' == 'true'">true</DeterministicSourcePaths>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
==========
|
==========
|
||||||
SourceRoot
|
SourceRoot
|
||||||
==========
|
==========
|
||||||
|
|
||||||
All source files of the project are expected to be located under one of the directories specified by SourceRoot item group.
|
All source files of the project are expected to be located under one of the directories specified by SourceRoot item group.
|
||||||
This target collects all SourceRoots from various sources.
|
This target collects all SourceRoots from various sources.
|
||||||
|
|
||||||
This target calculates final local path for each SourceRoot and sets SourceRoot.MappedPath metadata accordingly.
|
This target calculates final local path for each SourceRoot and sets SourceRoot.MappedPath metadata accordingly.
|
||||||
The final path is a path with deterministic prefix when DeterministicSourcePaths is true, and the original path otherwise.
|
The final path is a path with deterministic prefix when DeterministicSourcePaths is true, and the original path otherwise.
|
||||||
In addition, the target validates and deduplicates the SourceRoot items.
|
In addition, the target validates and deduplicates the SourceRoot items.
|
||||||
|
|
||||||
InitializeSourceControlInformation is an msbuild target that ensures the SourceRoot items are populated from source control.
|
InitializeSourceControlInformation is an msbuild target that ensures the SourceRoot items are populated from source control.
|
||||||
The target is available only if SourceControlInformationFeatureSupported is true.
|
The target is available only if SourceControlInformationFeatureSupported is true.
|
||||||
|
|
||||||
A consumer of SourceRoot.MappedPath metadata, such as Source Link generator, shall depend on this target.
|
A consumer of SourceRoot.MappedPath metadata, such as Source Link generator, shall depend on this target.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<Target Name="InitializeSourceRootMappedPaths"
|
<Target Name="InitializeSourceRootMappedPaths"
|
||||||
DependsOnTargets="_InitializeSourceRootMappedPathsFromSourceControl">
|
DependsOnTargets="_InitializeSourceRootMappedPathsFromSourceControl">
|
||||||
|
|
||||||
<ItemGroup Condition="'@(_MappedSourceRoot)' != ''">
|
<ItemGroup Condition="'@(_MappedSourceRoot)' != ''">
|
||||||
<_MappedSourceRoot Remove="@(_MappedSourceRoot)" />
|
<_MappedSourceRoot Remove="@(_MappedSourceRoot)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<Microsoft.CodeAnalysis.BuildTasks.MapSourceRoots SourceRoots="@(SourceRoot)" Deterministic="$(DeterministicSourcePaths)">
|
<Microsoft.CodeAnalysis.BuildTasks.MapSourceRoots SourceRoots="@(SourceRoot)" Deterministic="$(DeterministicSourcePaths)">
|
||||||
<Output TaskParameter="MappedSourceRoots" ItemName="_MappedSourceRoot" />
|
<Output TaskParameter="MappedSourceRoots" ItemName="_MappedSourceRoot" />
|
||||||
</Microsoft.CodeAnalysis.BuildTasks.MapSourceRoots>
|
</Microsoft.CodeAnalysis.BuildTasks.MapSourceRoots>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<SourceRoot Remove="@(SourceRoot)" />
|
<SourceRoot Remove="@(SourceRoot)" />
|
||||||
<SourceRoot Include="@(_MappedSourceRoot)" />
|
<SourceRoot Include="@(_MappedSourceRoot)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Declare that target InitializeSourceRootMappedPaths that populates MappedPaths metadata on SourceRoot items is available.
|
Declare that target InitializeSourceRootMappedPaths that populates MappedPaths metadata on SourceRoot items is available.
|
||||||
-->
|
-->
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<SourceRootMappedPathsFeatureSupported>true</SourceRootMappedPathsFeatureSupported>
|
<SourceRootMappedPathsFeatureSupported>true</SourceRootMappedPathsFeatureSupported>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
If InitializeSourceControlInformation target isn't supported, we just continue without invoking that synchronization target.
|
If InitializeSourceControlInformation target isn't supported, we just continue without invoking that synchronization target.
|
||||||
We'll proceed with SourceRoot (and other source control properties) provided by the user (or blank).
|
We'll proceed with SourceRoot (and other source control properties) provided by the user (or blank).
|
||||||
-->
|
-->
|
||||||
<Target Name="_InitializeSourceRootMappedPathsFromSourceControl"
|
<Target Name="_InitializeSourceRootMappedPathsFromSourceControl"
|
||||||
DependsOnTargets="InitializeSourceControlInformation"
|
DependsOnTargets="InitializeSourceControlInformation"
|
||||||
Condition="'$(SourceControlInformationFeatureSupported)' == 'true'" />
|
Condition="'$(SourceControlInformationFeatureSupported)' == 'true'" />
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
=======
|
=======
|
||||||
PathMap
|
PathMap
|
||||||
=======
|
=======
|
||||||
|
|
||||||
If DeterministicSourcePaths is true sets PathMap based on SourceRoot.MappedPaths.
|
If DeterministicSourcePaths is true sets PathMap based on SourceRoot.MappedPaths.
|
||||||
|
|
||||||
This target requires SourceRoot to be initialized in order to calculate the PathMap.
|
This target requires SourceRoot to be initialized in order to calculate the PathMap.
|
||||||
If SourceRoot doesn't contain any top-level roots an error is reported.
|
If SourceRoot doesn't contain any top-level roots an error is reported.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<Target Name="_SetPathMapFromSourceRoots"
|
<Target Name="_SetPathMapFromSourceRoots"
|
||||||
DependsOnTargets="InitializeSourceRootMappedPaths"
|
DependsOnTargets="InitializeSourceRootMappedPaths"
|
||||||
BeforeTargets="CoreCompile"
|
BeforeTargets="CoreCompile"
|
||||||
Condition="'$(DeterministicSourcePaths)' == 'true'">
|
Condition="'$(DeterministicSourcePaths)' == 'true'">
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<_TopLevelSourceRoot Include="@(SourceRoot)" Condition="'%(SourceRoot.NestedRoot)' == ''"/>
|
<_TopLevelSourceRoot Include="@(SourceRoot)" Condition="'%(SourceRoot.NestedRoot)' == ''"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'@(_TopLevelSourceRoot)' != ''">
|
<PropertyGroup Condition="'@(_TopLevelSourceRoot)' != ''">
|
||||||
<!-- TODO: Report error/warning if /pathmap doesn't cover all emitted source paths: https://github.com/dotnet/roslyn/issues/23969 -->
|
<!-- TODO: Report error/warning if /pathmap doesn't cover all emitted source paths: https://github.com/dotnet/roslyn/issues/23969 -->
|
||||||
|
|
||||||
<!-- TODO: PathMap should accept and ignore empty mapping: https://github.com/dotnet/roslyn/issues/23523 -->
|
<!-- TODO: PathMap should accept and ignore empty mapping: https://github.com/dotnet/roslyn/issues/23523 -->
|
||||||
<PathMap Condition="'$(PathMap)' != ''">,$(PathMap)</PathMap>
|
<PathMap Condition="'$(PathMap)' != ''">,$(PathMap)</PathMap>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Prepend the SourceRoot.MappedPath values to PathMap, if it already has a value.
|
Prepend the SourceRoot.MappedPath values to PathMap, if it already has a value.
|
||||||
For each emitted source path the compiler applies the first mapping that matches the path.
|
For each emitted source path the compiler applies the first mapping that matches the path.
|
||||||
PathMap values set previously will thus only be applied if the mapping provided by
|
PathMap values set previously will thus only be applied if the mapping provided by
|
||||||
SourceRoot.MappedPath doesn't match. Since SourceRoot.MappedPath is also used by SourceLink
|
SourceRoot.MappedPath doesn't match. Since SourceRoot.MappedPath is also used by SourceLink
|
||||||
preferring it over manually set PathMap ensures that PathMap is consistent with SourceLink.
|
preferring it over manually set PathMap ensures that PathMap is consistent with SourceLink.
|
||||||
|
|
||||||
TODO: quote the paths to avoid misinterpreting ',' and '=' in them as separators,
|
TODO: quote the paths to avoid misinterpreting ',' and '=' in them as separators,
|
||||||
but quoting doesn't currently work (see https://github.com/dotnet/roslyn/issues/22835).
|
but quoting doesn't currently work (see https://github.com/dotnet/roslyn/issues/22835).
|
||||||
-->
|
-->
|
||||||
<PathMap>@(_TopLevelSourceRoot->'%(Identity)=%(MappedPath)', ',')$(PathMap)</PathMap>
|
<PathMap>@(_TopLevelSourceRoot->'%(Identity)=%(MappedPath)', ',')$(PathMap)</PathMap>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
@ -1,13 +1,13 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?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. -->
|
<!-- 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">
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<_AllDirectoriesAbove Include="@(Compile->GetPathsOfAllDirectoriesAbove())" Condition="'$(DiscoverEditorConfigFiles)' != 'false'" />
|
<_AllDirectoriesAbove Include="@(Compile->GetPathsOfAllDirectoriesAbove())" Condition="'$(DiscoverEditorConfigFiles)' != 'false'" />
|
||||||
<!-- Work around a GetPathsOfAllDirectoriesAbove() bug where it can return multiple equivalent paths when the
|
<!-- 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 -->
|
compilation includes linked files with relative paths - https://github.com/microsoft/msbuild/issues/4392 -->
|
||||||
<PotentialEditorConfigFiles Include="@(_AllDirectoriesAbove->'%(FullPath)'->Distinct()->Combine('.editorconfig'))" Condition="'$(DiscoverEditorConfigFiles)' != 'false'" />
|
<PotentialEditorConfigFiles Include="@(_AllDirectoriesAbove->'%(FullPath)'->Distinct()->Combine('.editorconfig'))" Condition="'$(DiscoverEditorConfigFiles)' != 'false'" />
|
||||||
<EditorConfigFiles Include="@(PotentialEditorConfigFiles->Exists())" Condition="'$(DiscoverEditorConfigFiles)' != 'false'" />
|
<EditorConfigFiles Include="@(PotentialEditorConfigFiles->Exists())" Condition="'$(DiscoverEditorConfigFiles)' != 'false'" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
@ -1,136 +1,136 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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. -->
|
<!-- 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 ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<Import Project="Microsoft.Managed.Core.targets"/>
|
<Import Project="Microsoft.Managed.Core.targets"/>
|
||||||
|
|
||||||
<Target Name="CoreCompile"
|
<Target Name="CoreCompile"
|
||||||
Inputs="$(MSBuildAllProjects);
|
Inputs="$(MSBuildAllProjects);
|
||||||
@(Compile);
|
@(Compile);
|
||||||
@(_CoreCompileResourceInputs);
|
@(_CoreCompileResourceInputs);
|
||||||
$(ApplicationIcon);
|
$(ApplicationIcon);
|
||||||
$(AssemblyOriginatorKeyFile);
|
$(AssemblyOriginatorKeyFile);
|
||||||
@(ReferencePathWithRefAssemblies);
|
@(ReferencePathWithRefAssemblies);
|
||||||
@(CompiledLicenseFile);
|
@(CompiledLicenseFile);
|
||||||
@(LinkResource);
|
@(LinkResource);
|
||||||
@(EmbeddedDocumentation);
|
@(EmbeddedDocumentation);
|
||||||
$(Win32Resource);
|
$(Win32Resource);
|
||||||
$(Win32Manifest);
|
$(Win32Manifest);
|
||||||
@(CustomAdditionalCompileInputs);
|
@(CustomAdditionalCompileInputs);
|
||||||
$(ResolvedCodeAnalysisRuleSet);
|
$(ResolvedCodeAnalysisRuleSet);
|
||||||
@(AdditionalFiles);
|
@(AdditionalFiles);
|
||||||
@(EmbeddedFiles);
|
@(EmbeddedFiles);
|
||||||
@(EditorConfigFiles)"
|
@(EditorConfigFiles)"
|
||||||
Outputs="@(DocFileItem);
|
Outputs="@(DocFileItem);
|
||||||
@(IntermediateAssembly);
|
@(IntermediateAssembly);
|
||||||
@(IntermediateRefAssembly);
|
@(IntermediateRefAssembly);
|
||||||
@(_DebugSymbolsIntermediatePath);
|
@(_DebugSymbolsIntermediatePath);
|
||||||
$(NonExistentFile);
|
$(NonExistentFile);
|
||||||
@(CustomAdditionalCompileOutputs)"
|
@(CustomAdditionalCompileOutputs)"
|
||||||
Returns="@(VbcCommandLineArgs)"
|
Returns="@(VbcCommandLineArgs)"
|
||||||
DependsOnTargets="$(CoreCompileDependsOn);_BeforeVBCSCoreCompile">
|
DependsOnTargets="$(CoreCompileDependsOn);_BeforeVBCSCoreCompile">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<_NoWarnings Condition="'$(WarningLevel)' == '0'">true</_NoWarnings>
|
<_NoWarnings Condition="'$(WarningLevel)' == '0'">true</_NoWarnings>
|
||||||
<_NoWarnings Condition="'$(WarningLevel)' == '1'">false</_NoWarnings>
|
<_NoWarnings Condition="'$(WarningLevel)' == '1'">false</_NoWarnings>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<!-- If we are targeting winmdobj we want to specifically the pdbFile property since we do not want it to collide with the output of winmdexp-->
|
<!-- If we are targeting winmdobj we want to specifically the pdbFile property since we do not want it to collide with the output of winmdexp-->
|
||||||
<PdbFile Condition="'$(PdbFile)' == '' AND '$(OutputType)' == 'winmdobj' AND '$(DebugSymbols)' == 'true'">$(IntermediateOutputPath)$(TargetName).compile.pdb</PdbFile>
|
<PdbFile Condition="'$(PdbFile)' == '' AND '$(OutputType)' == 'winmdobj' AND '$(DebugSymbols)' == 'true'">$(IntermediateOutputPath)$(TargetName).compile.pdb</PdbFile>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- Condition is to filter out the _CoreCompileResourceInputs so that it doesn't pass in culture resources to the compiler -->
|
<!-- Condition is to filter out the _CoreCompileResourceInputs so that it doesn't pass in culture resources to the compiler -->
|
||||||
<Vbc Condition="'%(_CoreCompileResourceInputs.WithCulture)' != 'true'"
|
<Vbc Condition="'%(_CoreCompileResourceInputs.WithCulture)' != 'true'"
|
||||||
AdditionalLibPaths="$(AdditionalLibPaths)"
|
AdditionalLibPaths="$(AdditionalLibPaths)"
|
||||||
AddModules="@(AddModules)"
|
AddModules="@(AddModules)"
|
||||||
AdditionalFiles="@(AdditionalFiles)"
|
AdditionalFiles="@(AdditionalFiles)"
|
||||||
AnalyzerConfigFiles="@(EditorConfigFiles)"
|
AnalyzerConfigFiles="@(EditorConfigFiles)"
|
||||||
Analyzers="@(Analyzer)"
|
Analyzers="@(Analyzer)"
|
||||||
BaseAddress="$(BaseAddress)"
|
BaseAddress="$(BaseAddress)"
|
||||||
ChecksumAlgorithm="$(ChecksumAlgorithm)"
|
ChecksumAlgorithm="$(ChecksumAlgorithm)"
|
||||||
CodeAnalysisRuleSet="$(ResolvedCodeAnalysisRuleSet)"
|
CodeAnalysisRuleSet="$(ResolvedCodeAnalysisRuleSet)"
|
||||||
CodePage="$(CodePage)"
|
CodePage="$(CodePage)"
|
||||||
DebugType="$(DebugType)"
|
DebugType="$(DebugType)"
|
||||||
DefineConstants="$(FinalDefineConstants)"
|
DefineConstants="$(FinalDefineConstants)"
|
||||||
DelaySign="$(DelaySign)"
|
DelaySign="$(DelaySign)"
|
||||||
DisableSdkPath="$(DisableSdkPath)"
|
DisableSdkPath="$(DisableSdkPath)"
|
||||||
DisabledWarnings="$(NoWarn)"
|
DisabledWarnings="$(NoWarn)"
|
||||||
DocumentationFile="@(DocFileItem)"
|
DocumentationFile="@(DocFileItem)"
|
||||||
EmbedAllSources="$(EmbedAllSources)"
|
EmbedAllSources="$(EmbedAllSources)"
|
||||||
EmbeddedFiles="@(EmbeddedFiles)"
|
EmbeddedFiles="@(EmbeddedFiles)"
|
||||||
EmitDebugInformation="$(DebugSymbols)"
|
EmitDebugInformation="$(DebugSymbols)"
|
||||||
EnvironmentVariables="$(VbcEnvironment)"
|
EnvironmentVariables="$(VbcEnvironment)"
|
||||||
ErrorLog="$(ErrorLog)"
|
ErrorLog="$(ErrorLog)"
|
||||||
ErrorReport="$(ErrorReport)"
|
ErrorReport="$(ErrorReport)"
|
||||||
Features="$(Features)"
|
Features="$(Features)"
|
||||||
FileAlignment="$(FileAlignment)"
|
FileAlignment="$(FileAlignment)"
|
||||||
GenerateDocumentation="$(GenerateDocumentation)"
|
GenerateDocumentation="$(GenerateDocumentation)"
|
||||||
HighEntropyVA="$(HighEntropyVA)"
|
HighEntropyVA="$(HighEntropyVA)"
|
||||||
Imports="@(Import)"
|
Imports="@(Import)"
|
||||||
Instrument="$(Instrument)"
|
Instrument="$(Instrument)"
|
||||||
KeyContainer="$(KeyContainerName)"
|
KeyContainer="$(KeyContainerName)"
|
||||||
KeyFile="$(KeyOriginatorFile)"
|
KeyFile="$(KeyOriginatorFile)"
|
||||||
LangVersion="$(LangVersion)"
|
LangVersion="$(LangVersion)"
|
||||||
LinkResources="@(LinkResource)"
|
LinkResources="@(LinkResource)"
|
||||||
MainEntryPoint="$(StartupObject)"
|
MainEntryPoint="$(StartupObject)"
|
||||||
ModuleAssemblyName="$(ModuleAssemblyName)"
|
ModuleAssemblyName="$(ModuleAssemblyName)"
|
||||||
NoConfig="true"
|
NoConfig="true"
|
||||||
NoStandardLib="$(NoCompilerStandardLib)"
|
NoStandardLib="$(NoCompilerStandardLib)"
|
||||||
NoVBRuntimeReference="$(NoVBRuntimeReference)"
|
NoVBRuntimeReference="$(NoVBRuntimeReference)"
|
||||||
NoWarnings="$(_NoWarnings)"
|
NoWarnings="$(_NoWarnings)"
|
||||||
NoWin32Manifest="$(NoWin32Manifest)"
|
NoWin32Manifest="$(NoWin32Manifest)"
|
||||||
Optimize="$(Optimize)"
|
Optimize="$(Optimize)"
|
||||||
Deterministic="$(Deterministic)"
|
Deterministic="$(Deterministic)"
|
||||||
PublicSign="$(PublicSign)"
|
PublicSign="$(PublicSign)"
|
||||||
OptionCompare="$(OptionCompare)"
|
OptionCompare="$(OptionCompare)"
|
||||||
OptionExplicit="$(OptionExplicit)"
|
OptionExplicit="$(OptionExplicit)"
|
||||||
OptionInfer="$(OptionInfer)"
|
OptionInfer="$(OptionInfer)"
|
||||||
OptionStrict="$(OptionStrict)"
|
OptionStrict="$(OptionStrict)"
|
||||||
OptionStrictType="$(OptionStrictType)"
|
OptionStrictType="$(OptionStrictType)"
|
||||||
OutputAssembly="@(IntermediateAssembly)"
|
OutputAssembly="@(IntermediateAssembly)"
|
||||||
OutputRefAssembly="@(IntermediateRefAssembly)"
|
OutputRefAssembly="@(IntermediateRefAssembly)"
|
||||||
PdbFile="$(PdbFile)"
|
PdbFile="$(PdbFile)"
|
||||||
Platform="$(PlatformTarget)"
|
Platform="$(PlatformTarget)"
|
||||||
Prefer32Bit="$(Prefer32Bit)"
|
Prefer32Bit="$(Prefer32Bit)"
|
||||||
PreferredUILang="$(PreferredUILang)"
|
PreferredUILang="$(PreferredUILang)"
|
||||||
ProvideCommandLineArgs="$(ProvideCommandLineArgs)"
|
ProvideCommandLineArgs="$(ProvideCommandLineArgs)"
|
||||||
References="@(ReferencePathWithRefAssemblies)"
|
References="@(ReferencePathWithRefAssemblies)"
|
||||||
RefOnly="$(ProduceOnlyReferenceAssembly)"
|
RefOnly="$(ProduceOnlyReferenceAssembly)"
|
||||||
RemoveIntegerChecks="$(RemoveIntegerChecks)"
|
RemoveIntegerChecks="$(RemoveIntegerChecks)"
|
||||||
ReportAnalyzer="$(ReportAnalyzer)"
|
ReportAnalyzer="$(ReportAnalyzer)"
|
||||||
Resources="@(_CoreCompileResourceInputs);@(CompiledLicenseFile)"
|
Resources="@(_CoreCompileResourceInputs);@(CompiledLicenseFile)"
|
||||||
ResponseFiles="$(CompilerResponseFile)"
|
ResponseFiles="$(CompilerResponseFile)"
|
||||||
RootNamespace="$(RootNamespace)"
|
RootNamespace="$(RootNamespace)"
|
||||||
RuntimeMetadataVersion="$(RuntimeMetadataVersion)"
|
RuntimeMetadataVersion="$(RuntimeMetadataVersion)"
|
||||||
SdkPath="$(FrameworkPathOverride)"
|
SdkPath="$(FrameworkPathOverride)"
|
||||||
SharedCompilationId="$(SharedCompilationId)"
|
SharedCompilationId="$(SharedCompilationId)"
|
||||||
SkipCompilerExecution="$(SkipCompilerExecution)"
|
SkipCompilerExecution="$(SkipCompilerExecution)"
|
||||||
Sources="@(Compile)"
|
Sources="@(Compile)"
|
||||||
SubsystemVersion="$(SubsystemVersion)"
|
SubsystemVersion="$(SubsystemVersion)"
|
||||||
TargetCompactFramework="$(TargetCompactFramework)"
|
TargetCompactFramework="$(TargetCompactFramework)"
|
||||||
TargetType="$(OutputType)"
|
TargetType="$(OutputType)"
|
||||||
ToolExe="$(VbcToolExe)"
|
ToolExe="$(VbcToolExe)"
|
||||||
ToolPath="$(VbcToolPath)"
|
ToolPath="$(VbcToolPath)"
|
||||||
TreatWarningsAsErrors="$(TreatWarningsAsErrors)"
|
TreatWarningsAsErrors="$(TreatWarningsAsErrors)"
|
||||||
UseHostCompilerIfAvailable="$(UseHostCompilerIfAvailable)"
|
UseHostCompilerIfAvailable="$(UseHostCompilerIfAvailable)"
|
||||||
UseSharedCompilation="$(UseSharedCompilation)"
|
UseSharedCompilation="$(UseSharedCompilation)"
|
||||||
Utf8Output="$(Utf8Output)"
|
Utf8Output="$(Utf8Output)"
|
||||||
VBRuntimePath="$(VBRuntimePath)"
|
VBRuntimePath="$(VBRuntimePath)"
|
||||||
Verbosity="$(VbcVerbosity)"
|
Verbosity="$(VbcVerbosity)"
|
||||||
VsSessionGuid="$(VsSessionGuid)"
|
VsSessionGuid="$(VsSessionGuid)"
|
||||||
WarningsAsErrors="$(WarningsAsErrors)"
|
WarningsAsErrors="$(WarningsAsErrors)"
|
||||||
WarningsNotAsErrors="$(WarningsNotAsErrors)"
|
WarningsNotAsErrors="$(WarningsNotAsErrors)"
|
||||||
Win32Icon="$(ApplicationIcon)"
|
Win32Icon="$(ApplicationIcon)"
|
||||||
Win32Manifest="$(Win32Manifest)"
|
Win32Manifest="$(Win32Manifest)"
|
||||||
Win32Resource="$(Win32Resource)"
|
Win32Resource="$(Win32Resource)"
|
||||||
VBRuntime="$(VBRuntime)"
|
VBRuntime="$(VBRuntime)"
|
||||||
PathMap="$(PathMap)"
|
PathMap="$(PathMap)"
|
||||||
SourceLink="$(SourceLink)">
|
SourceLink="$(SourceLink)">
|
||||||
<Output TaskParameter="CommandLineArgs" ItemName="VbcCommandLineArgs" />
|
<Output TaskParameter="CommandLineArgs" ItemName="VbcCommandLineArgs" />
|
||||||
</Vbc>
|
</Vbc>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<_CoreCompileResourceInputs Remove="@(_CoreCompileResourceInputs)" />
|
<_CoreCompileResourceInputs Remove="@(_CoreCompileResourceInputs)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<CallTarget Targets="$(TargetsTriggeredByCompilation)" Condition="'$(TargetsTriggeredByCompilation)' != ''" />
|
<CallTarget Targets="$(TargetsTriggeredByCompilation)" Condition="'$(TargetsTriggeredByCompilation)' != ''" />
|
||||||
</Target>
|
</Target>
|
||||||
</Project>
|
</Project>
|
||||||
|
Binary file not shown.
@ -1,82 +1,82 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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. -->
|
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
|
||||||
<configuration>
|
<configuration>
|
||||||
<startup>
|
<startup>
|
||||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
</startup>
|
</startup>
|
||||||
<runtime>
|
<runtime>
|
||||||
<gcServer enabled="true" />
|
<gcServer enabled="true" />
|
||||||
<gcConcurrent enabled="false" />
|
<gcConcurrent enabled="false" />
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.CodeAnalysis.CSharp" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
<assemblyIdentity name="Microsoft.CodeAnalysis.CSharp" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.CodeAnalysis" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
<assemblyIdentity name="Microsoft.CodeAnalysis" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.CodeAnalysis.VisualBasic" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
<assemblyIdentity name="Microsoft.CodeAnalysis.VisualBasic" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-1.2.3.0" newVersion="1.2.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-1.2.3.0" newVersion="1.2.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.1.3.0" newVersion="4.1.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.1.3.0" newVersion="4.1.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Reflection.Metadata" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Reflection.Metadata" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-1.4.3.0" newVersion="1.4.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-1.4.3.0" newVersion="1.4.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
</runtime>
|
</runtime>
|
||||||
<appSettings>
|
<appSettings>
|
||||||
<!-- Number of seconds with no activity before the server times out and closes.
|
<!-- Number of seconds with no activity before the server times out and closes.
|
||||||
Set to -1 to never shut down the server. -->
|
Set to -1 to never shut down the server. -->
|
||||||
<add key="keepalive" value="600" />
|
<add key="keepalive" value="600" />
|
||||||
</appSettings>
|
</appSettings>
|
||||||
</configuration>
|
</configuration>
|
Binary file not shown.
@ -1,71 +1,71 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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. -->
|
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
|
||||||
<configuration>
|
<configuration>
|
||||||
<startup>
|
<startup>
|
||||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
</startup>
|
</startup>
|
||||||
<runtime>
|
<runtime>
|
||||||
<gcServer enabled="true" />
|
<gcServer enabled="true" />
|
||||||
<gcConcurrent enabled="false" />
|
<gcConcurrent enabled="false" />
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.CodeAnalysis.CSharp" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
<assemblyIdentity name="Microsoft.CodeAnalysis.CSharp" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.CodeAnalysis" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
<assemblyIdentity name="Microsoft.CodeAnalysis" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-1.2.3.0" newVersion="1.2.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-1.2.3.0" newVersion="1.2.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.1.3.0" newVersion="4.1.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.1.3.0" newVersion="4.1.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Reflection.Metadata" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Reflection.Metadata" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-1.4.3.0" newVersion="1.4.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-1.4.3.0" newVersion="1.4.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
</runtime>
|
</runtime>
|
||||||
</configuration>
|
</configuration>
|
@ -1,46 +1,46 @@
|
|||||||
# Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
# Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
||||||
|
|
||||||
# This file contains command-line options that the C#
|
# This file contains command-line options that the C#
|
||||||
# command line compiler (CSC) will process as part
|
# command line compiler (CSC) will process as part
|
||||||
# of every compilation, unless the "/noconfig" option
|
# of every compilation, unless the "/noconfig" option
|
||||||
# is specified.
|
# is specified.
|
||||||
|
|
||||||
# Reference the common Framework libraries
|
# Reference the common Framework libraries
|
||||||
/r:Accessibility.dll
|
/r:Accessibility.dll
|
||||||
/r:Microsoft.CSharp.dll
|
/r:Microsoft.CSharp.dll
|
||||||
/r:System.Configuration.dll
|
/r:System.Configuration.dll
|
||||||
/r:System.Configuration.Install.dll
|
/r:System.Configuration.Install.dll
|
||||||
/r:System.Core.dll
|
/r:System.Core.dll
|
||||||
/r:System.Data.dll
|
/r:System.Data.dll
|
||||||
/r:System.Data.DataSetExtensions.dll
|
/r:System.Data.DataSetExtensions.dll
|
||||||
/r:System.Data.Linq.dll
|
/r:System.Data.Linq.dll
|
||||||
/r:System.Data.OracleClient.dll
|
/r:System.Data.OracleClient.dll
|
||||||
/r:System.Deployment.dll
|
/r:System.Deployment.dll
|
||||||
/r:System.Design.dll
|
/r:System.Design.dll
|
||||||
/r:System.DirectoryServices.dll
|
/r:System.DirectoryServices.dll
|
||||||
/r:System.dll
|
/r:System.dll
|
||||||
/r:System.Drawing.Design.dll
|
/r:System.Drawing.Design.dll
|
||||||
/r:System.Drawing.dll
|
/r:System.Drawing.dll
|
||||||
/r:System.EnterpriseServices.dll
|
/r:System.EnterpriseServices.dll
|
||||||
/r:System.Management.dll
|
/r:System.Management.dll
|
||||||
/r:System.Messaging.dll
|
/r:System.Messaging.dll
|
||||||
/r:System.Runtime.Remoting.dll
|
/r:System.Runtime.Remoting.dll
|
||||||
/r:System.Runtime.Serialization.dll
|
/r:System.Runtime.Serialization.dll
|
||||||
/r:System.Runtime.Serialization.Formatters.Soap.dll
|
/r:System.Runtime.Serialization.Formatters.Soap.dll
|
||||||
/r:System.Security.dll
|
/r:System.Security.dll
|
||||||
/r:System.ServiceModel.dll
|
/r:System.ServiceModel.dll
|
||||||
/r:System.ServiceModel.Web.dll
|
/r:System.ServiceModel.Web.dll
|
||||||
/r:System.ServiceProcess.dll
|
/r:System.ServiceProcess.dll
|
||||||
/r:System.Transactions.dll
|
/r:System.Transactions.dll
|
||||||
/r:System.Web.dll
|
/r:System.Web.dll
|
||||||
/r:System.Web.Extensions.Design.dll
|
/r:System.Web.Extensions.Design.dll
|
||||||
/r:System.Web.Extensions.dll
|
/r:System.Web.Extensions.dll
|
||||||
/r:System.Web.Mobile.dll
|
/r:System.Web.Mobile.dll
|
||||||
/r:System.Web.RegularExpressions.dll
|
/r:System.Web.RegularExpressions.dll
|
||||||
/r:System.Web.Services.dll
|
/r:System.Web.Services.dll
|
||||||
/r:System.Windows.Forms.dll
|
/r:System.Windows.Forms.dll
|
||||||
/r:System.Workflow.Activities.dll
|
/r:System.Workflow.Activities.dll
|
||||||
/r:System.Workflow.ComponentModel.dll
|
/r:System.Workflow.ComponentModel.dll
|
||||||
/r:System.Workflow.Runtime.dll
|
/r:System.Workflow.Runtime.dll
|
||||||
/r:System.Xml.dll
|
/r:System.Xml.dll
|
||||||
/r:System.Xml.Linq.dll
|
/r:System.Xml.Linq.dll
|
||||||
|
Binary file not shown.
@ -1,81 +1,81 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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. -->
|
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
|
||||||
<configuration>
|
<configuration>
|
||||||
<startup>
|
<startup>
|
||||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
</startup>
|
</startup>
|
||||||
<runtime>
|
<runtime>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.CodeAnalysis.CSharp" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
<assemblyIdentity name="Microsoft.CodeAnalysis.CSharp" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.CodeAnalysis.CSharp.Scripting" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
<assemblyIdentity name="Microsoft.CodeAnalysis.CSharp.Scripting" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.CodeAnalysis" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
<assemblyIdentity name="Microsoft.CodeAnalysis" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.CodeAnalysis.Scripting" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
<assemblyIdentity name="Microsoft.CodeAnalysis.Scripting" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-1.2.3.0" newVersion="1.2.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-1.2.3.0" newVersion="1.2.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.1.3.0" newVersion="4.1.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.1.3.0" newVersion="4.1.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Reflection.Metadata" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Reflection.Metadata" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-1.4.3.0" newVersion="1.4.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-1.4.3.0" newVersion="1.4.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
</runtime>
|
</runtime>
|
||||||
</configuration>
|
</configuration>
|
Binary file not shown.
@ -1,71 +1,71 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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. -->
|
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
|
||||||
<configuration>
|
<configuration>
|
||||||
<startup>
|
<startup>
|
||||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
</startup>
|
</startup>
|
||||||
<runtime>
|
<runtime>
|
||||||
<gcServer enabled="true" />
|
<gcServer enabled="true" />
|
||||||
<gcConcurrent enabled="false" />
|
<gcConcurrent enabled="false" />
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.CodeAnalysis" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
<assemblyIdentity name="Microsoft.CodeAnalysis" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.CodeAnalysis.VisualBasic" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
<assemblyIdentity name="Microsoft.CodeAnalysis.VisualBasic" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-1.2.3.0" newVersion="1.2.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-1.2.3.0" newVersion="1.2.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.1.3.0" newVersion="4.1.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.1.3.0" newVersion="4.1.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Reflection.Metadata" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Reflection.Metadata" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-1.4.3.0" newVersion="1.4.3.0" />
|
<bindingRedirect oldVersion="0.0.0.0-1.4.3.0" newVersion="1.4.3.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
|
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
</runtime>
|
</runtime>
|
||||||
</configuration>
|
</configuration>
|
@ -1,55 +1,55 @@
|
|||||||
# Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
# Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
||||||
|
|
||||||
# This file contains command-line options that the VB
|
# This file contains command-line options that the VB
|
||||||
# command line compiler (VBC) will process as part
|
# command line compiler (VBC) will process as part
|
||||||
# of every compilation, unless the "/noconfig" option
|
# of every compilation, unless the "/noconfig" option
|
||||||
# is specified.
|
# is specified.
|
||||||
|
|
||||||
# Reference the common Framework libraries
|
# Reference the common Framework libraries
|
||||||
/r:Accessibility.dll
|
/r:Accessibility.dll
|
||||||
/r:System.Configuration.dll
|
/r:System.Configuration.dll
|
||||||
/r:System.Configuration.Install.dll
|
/r:System.Configuration.Install.dll
|
||||||
/r:System.Data.dll
|
/r:System.Data.dll
|
||||||
/r:System.Data.OracleClient.dll
|
/r:System.Data.OracleClient.dll
|
||||||
/r:System.Deployment.dll
|
/r:System.Deployment.dll
|
||||||
/r:System.Design.dll
|
/r:System.Design.dll
|
||||||
/r:System.DirectoryServices.dll
|
/r:System.DirectoryServices.dll
|
||||||
/r:System.dll
|
/r:System.dll
|
||||||
/r:System.Drawing.Design.dll
|
/r:System.Drawing.Design.dll
|
||||||
/r:System.Drawing.dll
|
/r:System.Drawing.dll
|
||||||
/r:System.EnterpriseServices.dll
|
/r:System.EnterpriseServices.dll
|
||||||
/r:System.Management.dll
|
/r:System.Management.dll
|
||||||
/r:System.Messaging.dll
|
/r:System.Messaging.dll
|
||||||
/r:System.Runtime.Remoting.dll
|
/r:System.Runtime.Remoting.dll
|
||||||
/r:System.Runtime.Serialization.Formatters.Soap.dll
|
/r:System.Runtime.Serialization.Formatters.Soap.dll
|
||||||
/r:System.Security.dll
|
/r:System.Security.dll
|
||||||
/r:System.ServiceProcess.dll
|
/r:System.ServiceProcess.dll
|
||||||
/r:System.Transactions.dll
|
/r:System.Transactions.dll
|
||||||
/r:System.Web.dll
|
/r:System.Web.dll
|
||||||
/r:System.Web.Mobile.dll
|
/r:System.Web.Mobile.dll
|
||||||
/r:System.Web.RegularExpressions.dll
|
/r:System.Web.RegularExpressions.dll
|
||||||
/r:System.Web.Services.dll
|
/r:System.Web.Services.dll
|
||||||
/r:System.Windows.Forms.dll
|
/r:System.Windows.Forms.dll
|
||||||
/r:System.Xml.dll
|
/r:System.Xml.dll
|
||||||
|
|
||||||
/r:System.Workflow.Activities.dll
|
/r:System.Workflow.Activities.dll
|
||||||
/r:System.Workflow.ComponentModel.dll
|
/r:System.Workflow.ComponentModel.dll
|
||||||
/r:System.Workflow.Runtime.dll
|
/r:System.Workflow.Runtime.dll
|
||||||
/r:System.Runtime.Serialization.dll
|
/r:System.Runtime.Serialization.dll
|
||||||
/r:System.ServiceModel.dll
|
/r:System.ServiceModel.dll
|
||||||
|
|
||||||
/r:System.Core.dll
|
/r:System.Core.dll
|
||||||
/r:System.Xml.Linq.dll
|
/r:System.Xml.Linq.dll
|
||||||
/r:System.Data.Linq.dll
|
/r:System.Data.Linq.dll
|
||||||
/r:System.Data.DataSetExtensions.dll
|
/r:System.Data.DataSetExtensions.dll
|
||||||
/r:System.Web.Extensions.dll
|
/r:System.Web.Extensions.dll
|
||||||
/r:System.Web.Extensions.Design.dll
|
/r:System.Web.Extensions.Design.dll
|
||||||
/r:System.ServiceModel.Web.dll
|
/r:System.ServiceModel.Web.dll
|
||||||
|
|
||||||
# Import System and Microsoft.VisualBasic
|
# Import System and Microsoft.VisualBasic
|
||||||
/imports:System
|
/imports:System
|
||||||
/imports:Microsoft.VisualBasic
|
/imports:Microsoft.VisualBasic
|
||||||
/imports:System.Linq
|
/imports:System.Linq
|
||||||
/imports:System.Xml.Linq
|
/imports:System.Xml.Linq
|
||||||
|
|
||||||
/optioninfer+
|
/optioninfer+
|
||||||
|
@ -60,6 +60,8 @@ monotouch_tv_SUBDIRS = nunit-lite
|
|||||||
monotouch_watch_SUBDIRS = nunit-lite
|
monotouch_watch_SUBDIRS = nunit-lite
|
||||||
monotouch_tools_SUBDIRS =
|
monotouch_tools_SUBDIRS =
|
||||||
monotouch_tools_PARALLEL_SUBDIRS = corcompare mono-api-html
|
monotouch_tools_PARALLEL_SUBDIRS = corcompare mono-api-html
|
||||||
|
xammac_SUBDIRS = nunit-lite
|
||||||
|
xammac_net_4_5_SUBDIRS = nunit-lite
|
||||||
net_4_x_SUBDIRS =
|
net_4_x_SUBDIRS =
|
||||||
net_4_x_PARALLEL_SUBDIRS = $(net_4_5_dirs)
|
net_4_x_PARALLEL_SUBDIRS = $(net_4_5_dirs)
|
||||||
wasm_tools_SUBDIRS =
|
wasm_tools_SUBDIRS =
|
||||||
|
@ -1 +1 @@
|
|||||||
#define FULL_VERSION "explicit/1648e88"
|
#define FULL_VERSION "explicit/fe64a47"
|
||||||
|
@ -1491,10 +1491,10 @@ distclean-generic:
|
|||||||
maintainer-clean-generic:
|
maintainer-clean-generic:
|
||||||
@echo "This command is intended for maintainers to use"
|
@echo "This command is intended for maintainers to use"
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
@CROSS_COMPILE_TRUE@test-local:
|
|
||||||
@HOST_WIN32_TRUE@test-local:
|
|
||||||
@CROSS_COMPILE_TRUE@clean-local:
|
@CROSS_COMPILE_TRUE@clean-local:
|
||||||
@HOST_WIN32_TRUE@clean-local:
|
@HOST_WIN32_TRUE@clean-local:
|
||||||
|
@CROSS_COMPILE_TRUE@test-local:
|
||||||
|
@HOST_WIN32_TRUE@test-local:
|
||||||
clean: clean-am
|
clean: clean-am
|
||||||
|
|
||||||
clean-am: clean-checkPROGRAMS clean-generic clean-libtool clean-local \
|
clean-am: clean-checkPROGRAMS clean-generic clean-libtool clean-local \
|
||||||
|
BIN
po/mcs/de.gmo
BIN
po/mcs/de.gmo
Binary file not shown.
@ -1 +1 @@
|
|||||||
cc5ce0347705822f704f71709145aaeaef6263cb
|
35ff64fd1385fd6b18029d9bba32c208d7fd1202
|
BIN
po/mcs/es.gmo
BIN
po/mcs/es.gmo
Binary file not shown.
@ -1 +1 @@
|
|||||||
ccd71281ed0ab4bf1a00015ee18fbddaee02f1a2
|
a424cd0bc5f06179c3e772c8fb52d997116a70da
|
BIN
po/mcs/ja.gmo
BIN
po/mcs/ja.gmo
Binary file not shown.
@ -1 +1 @@
|
|||||||
972921399c1759b0f9eb365fb36c103229b565bd
|
fb79a9a10f29def7b8517e092fdaecb376edc5b1
|
@ -6,9 +6,9 @@
|
|||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: mono 6.4.0.196\n"
|
"Project-Id-Version: mono 6.4.0.198\n"
|
||||||
"Report-Msgid-Bugs-To: http://www.mono-project.com/Bugs\n"
|
"Report-Msgid-Bugs-To: http://www.mono-project.com/Bugs\n"
|
||||||
"POT-Creation-Date: 2019-09-18 08:07+0000\n"
|
"POT-Creation-Date: 2019-09-19 08:12+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
BIN
po/mcs/pt_BR.gmo
BIN
po/mcs/pt_BR.gmo
Binary file not shown.
@ -1 +1 @@
|
|||||||
08a4e805bbc1dc8ab14f832760736e62c43dbacb
|
0448bfdd5e6fb16b08f498ec0094d4663eada906
|
Loading…
x
Reference in New Issue
Block a user