-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
core.csproj
41 lines (35 loc) · 1.57 KB
/
core.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>Vezel.Celerity.Runtime</AssemblyName>
<IsPackable>true</IsPackable>
<PackageDescription>$(PackageDescription)
This package provides shared components of the runtime system such as the
bytecode lowerer, garbage collector, and agent scheduler.</PackageDescription>
<PackageId>Vezel.Celerity.Runtime</PackageId>
<RootNamespace>Vezel.Celerity.Runtime</RootNamespace>
</PropertyGroup>
<ItemGroup>
<InternalsVisibleTo Include="Vezel.Celerity.Runtime.Compiler" />
<InternalsVisibleTo Include="Vezel.Celerity.Runtime.Interpreter" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../../language/core/core.csproj" />
<ProjectReference Include="../native/native.cproj"
ReferenceOutputAssembly="false" />
</ItemGroup>
<Target Name="_AddNativeLibraries"
BeforeTargets="AssignTargetPaths; _GetPackageFiles">
<MSBuild Projects="../native/native.cproj"
Targets="_GetNativeLibraries">
<Output TaskParameter="TargetOutputs"
ItemName="_NativeLibrary" />
</MSBuild>
<ItemGroup>
<Content Include="@(_NativeLibrary)"
Link="%(RuntimeIdentifier)/%(Filename)%(Extension)"
CopyToOutputDirectory="PreserveNewest"
PackagePath="runtimes/%(RuntimeIdentifier)/native" />
</ItemGroup>
</Target>
<Import Project="../../language/core/core.targets" />
</Project>