forked from EvilBeaver/OneScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOneScript.Core.csproj
More file actions
22 lines (19 loc) · 830 Bytes
/
OneScript.Core.csproj
File metadata and controls
22 lines (19 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$(MSBuildProjectDirectory)/../oscommon.targets" />
<PropertyGroup>
<TargetFramework>$(TargetFrameworkVersion)</TargetFramework>
<RootNamespace>OneScript</RootNamespace>
<Configurations>Debug;Release;LinuxDebug</Configurations>
<Platforms>AnyCPU</Platforms>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\OneScript.Language\OneScript.Language.csproj" />
</ItemGroup>
<PropertyGroup>
<PackageId>OneScript.CoreLib</PackageId>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'LinuxDebug' ">
<DebugSymbols Condition=" '$(DebugSymbols)' == '' ">true</DebugSymbols>
<Optimize Condition=" '$(Optimize)' == '' ">false</Optimize>
</PropertyGroup>
</Project>