forked from EvilBeaver/OneScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScriptEngine.csproj
More file actions
53 lines (43 loc) · 2.03 KB
/
ScriptEngine.csproj
File metadata and controls
53 lines (43 loc) · 2.03 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$(MSBuildProjectDirectory)/../oscommon.targets" />
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Configurations>Debug;Release;LinuxDebug</Configurations>
<Platforms>AnyCPU</Platforms>
</PropertyGroup>
<PropertyGroup>
<AssemblyTitle>1C (BSL) language runtime</AssemblyTitle>
</PropertyGroup>
<PropertyGroup>
<PackageId>OneScript</PackageId>
<PackageAuthors>OneScript OpenSource Community</PackageAuthors>
<Title>OneScript Core Runtime</Title>
<PackageDescription>Core Runtime Engine for 1Script</PackageDescription>
<PackageCopyright>OneScript OpenSource Community 2015</PackageCopyright>
<PackageTags>BSL 1C 1Script OneScript</PackageTags>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net452|AnyCPU'">
<DocumentationFile>bin\Release\net452\ScriptEngine.xml</DocumentationFile>
<NoWarn>1701;1702;1705;1591</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>TRACE;TINYIOC_INTERNAL</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DefineConstants>TRACE;TINYIOC_INTERNAL</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'LinuxDebug' ">
<DefineConstants>TRACE;TINYIOC_INTERNAL;DEBUG;</DefineConstants>
<DebugSymbols Condition=" '$(DebugSymbols)' == '' ">true</DebugSymbols>
<Optimize Condition=" '$(Optimize)' == '' ">false</Optimize>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\OneScript.Core\OneScript.Core.csproj" />
<ProjectReference Include="..\OneScript.Language\OneScript.Language.csproj" />
<ProjectReference Include="..\OneScript.Native\OneScript.Native.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="CustomMarshalers" Condition="'$(TargetFramework)' == 'net452'" />
</ItemGroup>
</Project>