Skip to content

Commit

Permalink
Initial commit of libdelugeclient-sharp.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bojan Rajkovic committed Jan 29, 2011
0 parents commit 5bb8655
Show file tree
Hide file tree
Showing 5 changed files with 92 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.userprefs
*/bin/
20 changes: 20 additions & 0 deletions libdelugeclient-sharp.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "libdelugeclient-sharp", "libdelugeclient-sharp\libdelugeclient-sharp.csproj", "{DB06A55C-89FF-46A9-ABE5-D9F095C6B740}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{DB06A55C-89FF-46A9-ABE5-D9F095C6B740}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DB06A55C-89FF-46A9-ABE5-D9F095C6B740}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DB06A55C-89FF-46A9-ABE5-D9F095C6B740}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DB06A55C-89FF-46A9-ABE5-D9F095C6B740}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
StartupItem = libdelugeclient-sharp\libdelugeclient-sharp.csproj
EndGlobalSection
EndGlobal
Binary file added libdelugeclient-sharp.snk
Binary file not shown.
17 changes: 17 additions & 0 deletions libdelugeclient-sharp/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
using System.Reflection;
using System.Runtime.CompilerServices;

// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.

[assembly: AssemblyTitle("libdelugeclient-sharp")]
[assembly: AssemblyDescription("A JSON-RPC client for Deluge.")]
[assembly: AssemblyProduct("libdelugeclient-sharp")]
[assembly: AssemblyCopyright("Bojan Rajkovic © 2011")]

// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.

[assembly: AssemblyVersion("0.1.*")]

53 changes: 53 additions & 0 deletions libdelugeclient-sharp/libdelugeclient-sharp.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="3.5" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{DB06A55C-89FF-46A9-ABE5-D9F095C6B740}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>libdelugeclientsharp</RootNamespace>
<AssemblyName>libdelugeclient-sharp</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\libdelugeclient-sharp.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ProjectExtensions>
<MonoDevelop>
<Properties>
<Policies>
<StandardHeader inheritsSet="MITX11License" />
<ChangeLogPolicy inheritsSet="Mono">
<MessageStyle LineAlign="0" />
</ChangeLogPolicy>
</Policies>
</Properties>
</MonoDevelop>
</ProjectExtensions>
</Project>

0 comments on commit 5bb8655

Please sign in to comment.