diff options
author | Jiyoung Yun <jy910.yun@samsung.com> | 2016-11-23 19:09:09 +0900 |
---|---|---|
committer | Jiyoung Yun <jy910.yun@samsung.com> | 2016-11-23 19:09:09 +0900 |
commit | 4b4aad7217d3292650e77eec2cf4c198ea9c3b4b (patch) | |
tree | 98110734c91668dfdbb126fcc0e15ddbd93738ca /src/ToolBox/SOS/NETCore/SOS.NETCore.csproj | |
parent | fa45f57ed55137c75ac870356a1b8f76c84b229c (diff) | |
download | coreclr-4b4aad7217d3292650e77eec2cf4c198ea9c3b4b.tar.gz coreclr-4b4aad7217d3292650e77eec2cf4c198ea9c3b4b.tar.bz2 coreclr-4b4aad7217d3292650e77eec2cf4c198ea9c3b4b.zip |
Imported Upstream version 1.1.0upstream/1.1.0
Diffstat (limited to 'src/ToolBox/SOS/NETCore/SOS.NETCore.csproj')
-rw-r--r-- | src/ToolBox/SOS/NETCore/SOS.NETCore.csproj | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/src/ToolBox/SOS/NETCore/SOS.NETCore.csproj b/src/ToolBox/SOS/NETCore/SOS.NETCore.csproj new file mode 100644 index 0000000000..bd9d2395f8 --- /dev/null +++ b/src/ToolBox/SOS/NETCore/SOS.NETCore.csproj @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" /> + + <PropertyGroup> + <AssemblyName>SOS.NETCore</AssemblyName> + <AssemblyVersion>1.0.0.0</AssemblyVersion> + <ProjectGuid>{20513BA2-A156-4A17-4C70-5AC2DBD4F833}</ProjectGuid> + <AllowUnsafeBlocks>true</AllowUnsafeBlocks> + <OutputType>Library</OutputType> + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> + <NoStdLib>true</NoStdLib> + <NoCompilerStandardLib>true</NoCompilerStandardLib> + <UseOpenKey Condition="'$(UseOpenKey)'==''">true</UseOpenKey> + </PropertyGroup> + + <!-- Default configurations to help VS understand the options --> + <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" /> + <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" /> + + <!-- Configuration specific properties --> + <PropertyGroup Condition="'$(Configuration)' == 'Debug' or '$(Configuration)' == 'Checked'"> + <DebugSymbols>true</DebugSymbols> + <DebugType>full</DebugType> + <DefineConstants>_DEBUG;DEBUG;TRACE;$(DefineConstants)</DefineConstants> + </PropertyGroup> + + <PropertyGroup Condition="'$(OsEnvironment)' == 'Unix'"> + <DebugSymbols>false</DebugSymbols> + <DebugType>none</DebugType> + </PropertyGroup> + + <ItemGroup> + <Compile Include="SymbolReader.cs" /> + </ItemGroup> + + <ItemGroup> + <None Include="project.json" /> + </ItemGroup> + + <Target Name="CopyItemsToDirectory" AfterTargets="Build"> + <Copy + SourceFiles="$(OutputPath)$(AssemblyName).dll" + DestinationFolder="$(BinDir)" + SkipUnchangedFiles="false" + OverwriteReadOnlyFiles="false" + UseHardlinksIfPossible="false"> + </Copy> + + <Copy + Condition="'$(OsEnvironment)' != 'Unix'" + SourceFiles="$(OutputPath)$(AssemblyName).pdb" + DestinationFolder="$(BinDir)\PDB" + SkipUnchangedFiles="false" + OverwriteReadOnlyFiles="false" + UseHardlinksIfPossible="false"> + </Copy> + </Target> + + <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" /> +</Project> |