2017-05-14 08:28:48 +03:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<AssemblyName>MirrorSharp.Tests.Roslyn2.Net46</AssemblyName>
|
|
|
|
|
<RootNamespace>MirrorSharp.Tests</RootNamespace>
|
2017-09-04 13:19:00 +03:00
|
|
|
|
<TargetFramework>net46</TargetFramework>
|
|
|
|
|
<RuntimeIdentifier Condition="'$(TargetFramework)' == 'net46'">win</RuntimeIdentifier>
|
2017-05-14 08:28:48 +03:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2017-05-14 13:07:11 +03:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<DefineConstants>TRACE;DEBUG;NET46;ROSLYN20</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<DefineConstants>TRACE;RELEASE;NET46;ROSLYN20</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2017-05-14 08:28:48 +03:00
|
|
|
|
<Import Project="..\Tests.Shared\MirrorSharp.Tests.Shared.projitems" Label="Shared" />
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0" />
|
2017-09-04 13:19:00 +03:00
|
|
|
|
<PackageReference Include="xunit" Version="2.2.0" />
|
2017-09-05 13:26:45 +03:00
|
|
|
|
<PackageReference Include="Moq" Version="4.7.99" />
|
2017-09-04 13:19:00 +03:00
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="2.3.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.3.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic" Version="2.3.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common" Version="2.3.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Features" Version="2.3.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.Features" Version="2.3.2" />
|
2017-05-14 08:28:48 +03:00
|
|
|
|
<PackageReference Include="System.Net.WebSockets" Version="4.0.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Common\Common.csproj" />
|
|
|
|
|
<ProjectReference Include="..\FSharp\FSharp.csproj" />
|
2018-01-23 14:02:07 +03:00
|
|
|
|
<ProjectReference Include="..\Php\Php.csproj" />
|
2017-05-14 08:28:48 +03:00
|
|
|
|
<ProjectReference Include="..\Testing\Testing.csproj" />
|
2017-05-22 11:40:29 +03:00
|
|
|
|
<ProjectReference Include="..\VisualBasic\VisualBasic.csproj" />
|
2017-05-14 08:28:48 +03:00
|
|
|
|
</ItemGroup>
|
2018-01-23 14:02:07 +03:00
|
|
|
|
|
|
|
|
|
<Target Name="ChangeAliasesOfStrongNameAssemblies" BeforeTargets="FindReferenceAssembliesForReferences;ResolveReferences">
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ReferencePath Condition="'%(FileName)' == 'Peachpie.Microsoft.CodeAnalysis'">
|
|
|
|
|
<Aliases>peachpie</Aliases>
|
|
|
|
|
</ReferencePath>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Target>
|
2017-05-14 08:28:48 +03:00
|
|
|
|
</Project>
|