| 123456789101112131415161718192021222324252627282930 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFrameworks>netcoreapp2.2;net461</TargetFrameworks>
- <DebugType>portable</DebugType>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="$(SharedSourceRoot)ClosedGenericMatcher\*.cs" />
- <Compile Include="$(SharedSourceRoot)CopyOnWriteDictionary\*.cs" />
- <Compile Include="$(SharedSourceRoot)ObjectMethodExecutor\*.cs" />
- <Compile Include="$(SharedSourceRoot)PropertyActivator\*.cs" />
- <Compile Include="$(SharedSourceRoot)PropertyHelper\*.cs" />
- <Compile Include="$(SharedSourceRoot)SecurityHelper\**\*.cs" />
- <Compile Include="$(SharedSourceRoot)StackTrace\StackFrame\**\*.cs" />
- <Compile Include="$(SharedSourceRoot)WebEncoders\**\*.cs" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="FSharp.Core" />
- <Reference Include="System.Reflection.Metadata" />
- <Reference Include="System.Threading.Tasks.Extensions" />
- <Reference Include="Microsoft.Extensions.TypeNameHelper.Sources" PrivateAssets="All" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\testassets\ThrowingLibrary\ThrowingLibrary.csproj" />
- </ItemGroup>
- </Project>
|