Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Ancillary.Interop.csproj « Ancillary.Interop « tests « System.Runtime.InteropServices « libraries « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 710d935b82f00a59c2cf7da3b3fd133dd7fcfdb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <AssemblyName>Microsoft.Interop.Ancillary</AssemblyName>
    <TargetFramework>$(NetCoreAppMinimum)</TargetFramework>
    <RootNamespace>System.Runtime.InteropServices</RootNamespace>
    <Nullable>enable</Nullable>
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
    <Description>APIs required for usage of the LibraryImportGenerator and related tools.</Description>
    <DefineConstants>$(DefineConstants);LIBRARYIMPORT_GENERATOR_TEST</DefineConstants>
  </PropertyGroup>

  <ItemGroup>
    <Compile Include="$(LibrariesProjectRoot)Common/src/System/Runtime/InteropServices/GeneratedMarshallingAttribute.cs" Link="GeneratedMarshallingAttribute.cs" />
    <Compile Include="$(LibrariesProjectRoot)Common/src/System/Runtime/InteropServices/ArrayMarshaller.cs" Link="ArrayMarshaller.cs" />
  </ItemGroup>
</Project>