forked from EvilBeaver/OneScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOneScript.Native.csproj
More file actions
26 lines (21 loc) · 969 Bytes
/
OneScript.Native.csproj
File metadata and controls
26 lines (21 loc) · 969 Bytes
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
<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 Condition=" '$(Configuration)' == 'LinuxDebug' ">
<DebugSymbols Condition=" '$(DebugSymbols)' == '' ">true</DebugSymbols>
<Optimize Condition=" '$(Optimize)' == '' ">false</Optimize>
<DebugSymbols>true</DebugSymbols>
<DefineConstants>TRACE; DEBUG;</DefineConstants>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\OneScript.Core\OneScript.Core.csproj" />
<ProjectReference Include="..\OneScript.Language\OneScript.Language.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
</ItemGroup>
</Project>