SparkleShare/Sparkles/Sparkles.csproj
Markus Stoll d339d77347 add debug Symbols for Debug configuration
add DebugMac configuration for debugging on Mac / OSX
2016-10-05 09:29:51 +02:00

101 lines
3.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{2C914413-B31C-4362-93C7-1AE34F09112A}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>Sparkles</RootNamespace>
<AssemblyName>Sparkles</AssemblyName>
<ReleaseVersion>
</ReleaseVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>False</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<Optimize>False</Optimize>
<OutputPath>..\bin</OutputPath>
<WarningLevel>4</WarningLevel>
<DebugSymbols>true</DebugSymbols>
<DefineConstants>DEBUG</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseMac|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>False</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugMac|AnyCPU' ">
<Optimize>False</Optimize>
<OutputPath>..\bin</OutputPath>
<WarningLevel>4</WarningLevel>
<DebugSymbols>true</DebugSymbols>
<DefineConstants>DEBUG</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Configuration.cs" />
<Compile Include="Extensions.cs" />
<Compile Include="Logger.cs" />
<Compile Include="InstallationInfo.Directory.cs" />
<Compile Include="Command.cs" />
<Compile Include="SSHFetcher.cs">
<Link>Fetcher\SSHFetcher.cs</Link>
</Compile>
<Compile Include="BaseFetcher.cs">
<Link>Fetcher\BaseFetcher.cs</Link>
</Compile>
<Compile Include="TcpListener.cs">
<Link>Listener\TcpListener.cs</Link>
</Compile>
<Compile Include="BaseListener.cs">
<Link>Listener\BaseListener.cs</Link>
</Compile>
<Compile Include="ListenerFactory.cs">
<Link>Listener\ListenerFactory.cs</Link>
</Compile>
<Compile Include="SSHAuthenticationInfo.cs">
<Link>AuthenticationInfo\SSHAuthenticationInfo.cs</Link>
</Compile>
<Compile Include="AuthenticationInfo.cs">
<Link>AuthenticationInfo\AuthenticationInfo.cs</Link>
</Compile>
<Compile Include="BaseRepository.cs">
<Link>Repository\BaseRepository.cs</Link>
</Compile>
<Compile Include="ChangeSet.cs">
<Link>Repository\ChangeSet.cs</Link>
</Compile>
<Compile Include="User.cs">
<Link>Repository\User.cs</Link>
</Compile>
<Compile Include="Watcher.cs">
<Link>Repository\Watcher.cs</Link>
</Compile>
<Compile Include="InstallationInfo.cs" />
<Compile Include="Preset.cs" />
<Compile Include="Invite.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="Fetcher\" />
<Folder Include="Listener\" />
<Folder Include="AuthenticationInfo\" />
<Folder Include="Repository\" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>