mirror of https://github.com/mono/CppSharp.git
c-sharpdotnetmonobindingsbridgecclangcpluspluscppsharpglueinteropparserparsingpinvokeswigsyntax-treevisitorsxamarinxamarin-bindings
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
883 B
22 lines
883 B
<Project> |
|
<PropertyGroup> |
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
|
<OutputPath>$(GenDir)$(TestName)</OutputPath> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<Compile Include="$(TestName).Tests.cs" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="$(TestName).CSharp.csproj" Condition="$(MSBuildProjectName.EndsWith('CSharp')) AND $(TestName) != 'NamespacesDerived'" /> |
|
<ProjectReference Include="$(NativeProjectsDir)$(TestName).Native.vcxproj" Condition="$(IsWindows)" ReferenceOutputAssembly="false" /> |
|
<ProjectReference Include="$(NativeProjectsDir)$(TestName).CLI.vcxproj" Condition="$(MSBuildProjectName.EndsWith('CLI')) AND $(IsWindows)" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Microsoft.NET.Test.Sdk" /> |
|
<PackageReference Include="NUnit" /> |
|
<PackageReference Include="NUnit3TestAdapter" /> |
|
</ItemGroup> |
|
</Project>
|
|
|