-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
85 additions
and
2 deletions.
There are no files selected for viewing
83 changes: 83 additions & 0 deletions
83
...Core/Source/ResultProvider/Portable/Microsoft - Backup.CodeAnalysis.ResultProvider.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. --> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Library</OutputType> | ||
<RootNamespace>Microsoft.CodeAnalysis.ExpressionEvaluator</RootNamespace> | ||
<AssemblyName>Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider</AssemblyName> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<ApplyNgenOptimization>full</ApplyNgenOptimization> | ||
</PropertyGroup> | ||
<ItemGroup Label="Linked Files"> | ||
<Compile Include="..\..\..\..\..\Compilers\Core\Portable\CaseInsensitiveComparison.cs"> | ||
<Link>Compiler\CaseInsensitiveComparison.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\..\..\Dependencies\PooledObjects\PooledStringBuilder.cs"> | ||
<Link>Compiler\Collections\PooledStringBuilder.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\..\..\Compilers\Core\Portable\InternalUtilities\Debug.cs"> | ||
<Link>Compiler\InternalUtilities\Debug.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\..\..\Compilers\Core\Portable\InternalUtilities\FailFast.cs"> | ||
<Link>Compiler\InternalUtilities\FailFast.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\..\..\Compilers\Core\Portable\InternalUtilities\FatalError.cs"> | ||
<Link>Compiler\InternalUtilities\FatalError.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\..\..\Compilers\Core\Portable\InternalUtilities\EnumField.cs"> | ||
<Link>Compiler\InternalUtilities\EnumField.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\..\..\Compilers\Core\Portable\InternalUtilities\ExceptionUtilities.cs"> | ||
<Link>Compiler\InternalUtilities\ExceptionUtilities.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\..\..\Compilers\Core\Portable\InternalUtilities\NullableAttributes.cs"> | ||
<Link>Compiler\InternalUtilities\NullableAttributes.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\..\..\Compilers\Core\Portable\InternalUtilities\ReflectionUtilities.cs"> | ||
<Link>Compiler\InternalUtilities\ReflectionUtilities.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\..\..\Dependencies\PooledObjects\ObjectPool`1.cs"> | ||
<Link>Compiler\InternalUtilities\ObjectPool`1.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\..\..\Compilers\Core\Portable\SymbolDisplay\ObjectDisplayExtensions.cs"> | ||
<Link>Compiler\SymbolDisplay\ObjectDisplayExtensions.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\..\..\Compilers\Core\Portable\SymbolDisplay\ObjectDisplayOptions.cs"> | ||
<Link>Compiler\SymbolDisplay\ObjectDisplayOptions.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\..\..\Compilers\Core\Portable\SymbolDisplay\SymbolDisplayPartKind.cs"> | ||
<Link>Compiler\SymbolDisplay\SymbolDisplayPartKind.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\..\..\Compilers\Core\Portable\Symbols\WellKnownMemberNames.cs"> | ||
<Link>Compiler\Symbols\WellKnownMemberNames.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\..\..\Compilers\Core\Portable\Xml\XmlCharType.cs"> | ||
<Link>Compiler\Xml\XmlCharType.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\..\..\Test\PdbUtilities\Shared\DateTimeUtilities.cs"> | ||
<Link>Helpers\DateTimeUtilities.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\ExpressionCompiler\CustomTypeInfo.cs"> | ||
<Link>ExpressionCompiler\CustomTypeInfo.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\ExpressionCompiler\DynamicFlagsCustomTypeInfo.cs"> | ||
<Link>ExpressionCompiler\DynamicFlagsCustomTypeInfo.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\ExpressionCompiler\ExpressionEvaluatorFatalError.cs"> | ||
<Link>ExpressionCompiler\ExpressionEvaluatorFatalError.cs</Link> | ||
</Compile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Update="Resources.resx" GenerateSource="true" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ResultProvider" /> | ||
<InternalsVisibleTo Include="Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ResultProvider" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.VisualStudio.Debugger.Engine-implementation" Version="$(MicrosoftVisualStudioDebuggerEngineimplementationVersion)" /> | ||
<PackageReference Include="Microsoft.VisualStudio.Debugger.Metadata-implementation" Version="$(MicrosoftVisualStudioDebuggerMetadataimplementationVersion)" /> | ||
<PackageReference Include="System.Memory" Version="$(SystemMemoryVersion)" /> | ||
</ItemGroup> | ||
<Import Project="..\ResultProvider.projitems" Label="Shared" /> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters