forked from commodifusion/SlightlySharper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SlightlySharper.csproj
53 lines (53 loc) · 2.13 KB
/
SlightlySharper.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
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{A7CF788A-1AB2-4E69-B307-603516C8E027}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>CommodiFusion.SlightlySharper</RootNamespace>
<AssemblyName>CommodiFusion.SlightlySharper</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>.</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>false</Optimize>
<OutputPath>.</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="SlightlySharperAddIn.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<None Include="README.md" />
<None Include="INSTALL.txt" />
<None Include="CommodiFusion.SlightlySharper.addin.xml" />
<None Include="addin-project.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="KeyBindingSchemeIDEA.xml" />
</ItemGroup>
<ItemGroup>
<Reference Include="MonoDevelop.Core">
<HintPath>..\..\..\..\..\opt\mono-3.0.4\lib\monodevelop\bin\MonoDevelop.Core.dll</HintPath>
</Reference>
<Reference Include="MonoDevelop.Ide">
<HintPath>..\..\..\..\..\opt\mono-3.0.4\lib\monodevelop\bin\MonoDevelop.Ide.dll</HintPath>
</Reference>
</ItemGroup>
</Project>