Skip to content

Commit cd73ebf

Browse files
committed
Removed 'packages' folder from repository
Enabled "NuGet Package restore" for solution. Had to move Joel.Net.Aksimet to a new folder named Libs because there was no package with name Joel.Net.Akismet in NuGet
1 parent c596208 commit cd73ebf

File tree

332 files changed

+163472
-215944
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

332 files changed

+163472
-215944
lines changed

.gitignore

+32-31
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,32 @@
1-
*resharper.user
2-
[Dd]ebug/
3-
[Rr]elease/
4-
[Bb]in/
5-
[Oo]bj/
6-
*.suo
7-
*.sln.cache
8-
_ReSharper.*/
9-
Output/
10-
*.resharper
11-
resharper.settings.xml
12-
*.user
13-
[Dd]ist
14-
junit-report
15-
junit
16-
ProfilerMessage.java
17-
0
18-
*.g.csproj
19-
temp-war-deps
20-
/.gitversion.tmp
21-
/.gitversion.short.tmp
22-
StyleCop.Cache
23-
/Server
24-
App_Data/
25-
/RaccoonBlog.Web/RaccoonBlog.Web.Publish.xml
26-
/*.docstates
27-
Thumbs.db
28-
*.dotCover
29-
/RaccoonBlog.Web/RaccoonBlog.Web.Publish.xml
30-
*/connString.config
31-
Logs/
1+
*resharper.user
2+
[Dd]ebug/
3+
[Rr]elease/
4+
[Bb]in/
5+
[Oo]bj/
6+
*.suo
7+
*.sln.cache
8+
_ReSharper.*/
9+
Output/
10+
*.resharper
11+
resharper.settings.xml
12+
*.user
13+
[Dd]ist
14+
junit-report
15+
junit
16+
ProfilerMessage.java
17+
0
18+
*.g.csproj
19+
temp-war-deps
20+
/.gitversion.tmp
21+
/.gitversion.short.tmp
22+
StyleCop.Cache
23+
/Server
24+
App_Data/
25+
/RaccoonBlog.Web/RaccoonBlog.Web.Publish.xml
26+
/*.docstates
27+
Thumbs.db
28+
*.dotCover
29+
/RaccoonBlog.Web/RaccoonBlog.Web.Publish.xml
30+
*/connString.config
31+
Logs/
32+
packages/

.nuget/NuGet.Config

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<solution>
4+
<add key="disableSourceControlIntegration" value="true" />
5+
</solution>
6+
</configuration>

.nuget/NuGet.exe

641 KB
Binary file not shown.

.nuget/NuGet.targets

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">$(MSBuildProjectDirectory)\..\</SolutionDir>
5+
6+
<!-- Windows specific commands -->
7+
<NuGetToolsPath Condition=" '$(OS)' == 'Windows_NT'">$([System.IO.Path]::Combine($(SolutionDir), ".nuget"))</NuGetToolsPath>
8+
<PackagesConfig Condition=" '$(OS)' == 'Windows_NT'">$([System.IO.Path]::Combine($(ProjectDir), "packages.config"))</PackagesConfig>
9+
<PackagesDir Condition=" '$(OS)' == 'Windows_NT'">$([System.IO.Path]::Combine($(SolutionDir), "packages"))</PackagesDir>
10+
11+
<!-- We need to launch nuget.exe with the mono command if we're not on windows -->
12+
<NuGetToolsPath Condition=" '$(OS)' != 'Windows_NT'">$(SolutionDir).nuget</NuGetToolsPath>
13+
<PackagesConfig Condition=" '$(OS)' != 'Windows_NT' ">packages.config</PackagesConfig>
14+
<PackagesDir Condition=" '$(OS)' != 'Windows_NT'">$(SolutionDir)packages</PackagesDir>
15+
16+
<!-- NuGet command -->
17+
<NuGetExePath>$(NuGetToolsPath)\nuget.exe</NuGetExePath>
18+
<NuGetCommand Condition=" '$(OS)' == 'Windows_NT'">"$(NuGetExePath)"</NuGetCommand>
19+
<NuGetCommand Condition=" '$(OS)' != 'Windows_NT' ">mono --runtime=v4.0.30319 $(NuGetExePath)</NuGetCommand>
20+
21+
<PackageOutputDir Condition="$(PackageOutputDir) == ''">$(TargetDir.Trim('\\'))</PackageOutputDir>
22+
23+
<!-- Package sources used to restore packages. By default will used the registered sources under %APPDATA%\NuGet\NuGet.Config -->
24+
<PackageSources>""</PackageSources>
25+
26+
<!-- Enable the restore command to run before builds -->
27+
<RestorePackages Condition="$(RestorePackages) == ''">false</RestorePackages>
28+
29+
<!-- Property that enables building a package from a project -->
30+
<BuildPackage Condition="$(BuildPackage) == ''">false</BuildPackage>
31+
32+
<!-- Commands -->
33+
<RestoreCommand>$(NuGetCommand) install "$(PackagesConfig)" -source $(PackageSources) -o "$(PackagesDir)"</RestoreCommand>
34+
<BuildCommand>$(NuGetCommand) pack "$(ProjectPath)" -p Configuration=$(Configuration) -o "$(PackageOutputDir)" -symbols</BuildCommand>
35+
36+
<!-- Make the build depend on restore packages -->
37+
<BuildDependsOn Condition="$(RestorePackages) == 'true'">
38+
RestorePackages;
39+
$(BuildDependsOn);
40+
</BuildDependsOn>
41+
42+
<!-- Make the build depend on restore packages -->
43+
<BuildDependsOn Condition="$(BuildPackage) == 'true'">
44+
$(BuildDependsOn);
45+
BuildPackage;
46+
</BuildDependsOn>
47+
</PropertyGroup>
48+
49+
<Target Name="CheckPrerequisites">
50+
<!-- Raise an error if we're unable to locate nuget.exe -->
51+
<Error Condition="!Exists('$(NuGetExePath)')" Text="Unable to locate '$(NuGetExePath)'" />
52+
</Target>
53+
54+
<Target Name="RestorePackages" DependsOnTargets="CheckPrerequisites">
55+
<Exec Command="$(RestoreCommand)"
56+
Condition="'$(OS)' != 'Windows_NT' And Exists('$(PackagesConfig)')" />
57+
58+
<Exec Command="$(RestoreCommand)"
59+
LogStandardErrorAsError="true"
60+
Condition="'$(OS)' == 'Windows_NT' And Exists('$(PackagesConfig)')" />
61+
</Target>
62+
63+
<Target Name="BuildPackage" DependsOnTargets="CheckPrerequisites">
64+
<Exec Command="$(BuildCommand)"
65+
Condition=" '$(OS)' != 'Windows_NT' " />
66+
67+
<Exec Command="$(BuildCommand)"
68+
LogStandardErrorAsError="true"
69+
Condition=" '$(OS)' == 'Windows_NT' " />
70+
</Target>
71+
</Project>
+113-110
Original file line numberDiff line numberDiff line change
@@ -1,111 +1,114 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<PropertyGroup>
4-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6-
<ProductVersion>8.0.30703</ProductVersion>
7-
<SchemaVersion>2.0</SchemaVersion>
8-
<ProjectGuid>{238D8AAA-FD89-48E7-9446-ADCDE845B58E}</ProjectGuid>
9-
<OutputType>Library</OutputType>
10-
<AppDesignerFolder>Properties</AppDesignerFolder>
11-
<RootNamespace>HibernatingRhinos.Loci.Common</RootNamespace>
12-
<AssemblyName>HibernatingRhinos.Loci.Common</AssemblyName>
13-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14-
<FileAlignment>512</FileAlignment>
15-
</PropertyGroup>
16-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17-
<DebugSymbols>true</DebugSymbols>
18-
<DebugType>full</DebugType>
19-
<Optimize>false</Optimize>
20-
<OutputPath>bin\Debug\</OutputPath>
21-
<DefineConstants>DEBUG;TRACE</DefineConstants>
22-
<ErrorReport>prompt</ErrorReport>
23-
<WarningLevel>4</WarningLevel>
24-
</PropertyGroup>
25-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26-
<DebugType>pdbonly</DebugType>
27-
<Optimize>true</Optimize>
28-
<OutputPath>bin\Release\</OutputPath>
29-
<DefineConstants>TRACE</DefineConstants>
30-
<ErrorReport>prompt</ErrorReport>
31-
<WarningLevel>4</WarningLevel>
32-
</PropertyGroup>
33-
<ItemGroup>
34-
<Reference Include="AsyncCtpLibrary, Version=1.0.4107.18181, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
35-
<HintPath>..\packages\RavenDB-Client.1.0.631-Unstable\lib\net40\AsyncCtpLibrary.dll</HintPath>
36-
</Reference>
37-
<Reference Include="DataAnnotationsExtensions, Version=1.0.1.0, Culture=neutral, PublicKeyToken=358a5681c50fd84c, processorArchitecture=MSIL">
38-
<SpecificVersion>False</SpecificVersion>
39-
<HintPath>..\packages\DataAnnotationsExtensions.1.0.1\lib\NETFramework40\DataAnnotationsExtensions.dll</HintPath>
40-
</Reference>
41-
<Reference Include="DataAnnotationsExtensions.ClientValidation, Version=1.0.1.0, Culture=neutral, PublicKeyToken=358a5681c50fd84c, processorArchitecture=MSIL">
42-
<SpecificVersion>False</SpecificVersion>
43-
<HintPath>..\packages\DataAnnotationsExtensions.MVC3.1.0.1\lib\NETFramework40\DataAnnotationsExtensions.ClientValidation.dll</HintPath>
44-
</Reference>
45-
<Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
46-
<Private>True</Private>
47-
<HintPath>..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
48-
</Reference>
49-
<Reference Include="Newtonsoft.Json, Version=4.0.5.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
50-
<SpecificVersion>False</SpecificVersion>
51-
<HintPath>..\packages\Newtonsoft.Json.4.0.5\lib\net40\Newtonsoft.Json.dll</HintPath>
52-
</Reference>
53-
<Reference Include="NLog">
54-
<HintPath>..\packages\NLog.2.0.0.2000\lib\net40\NLog.dll</HintPath>
55-
</Reference>
56-
<Reference Include="Raven.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=37f41c7f99471593, processorArchitecture=MSIL">
57-
<HintPath>..\packages\RavenDB-Client.1.0.631-Unstable\lib\net40\Raven.Abstractions.dll</HintPath>
58-
</Reference>
59-
<Reference Include="Raven.Client.Debug, Version=1.0.0.0, Culture=neutral, PublicKeyToken=37f41c7f99471593, processorArchitecture=MSIL">
60-
<HintPath>..\packages\RavenDB-Client.1.0.631-Unstable\lib\net40\Raven.Client.Debug.dll</HintPath>
61-
</Reference>
62-
<Reference Include="Raven.Client.Lightweight, Version=1.0.0.0, Culture=neutral, PublicKeyToken=37f41c7f99471593, processorArchitecture=MSIL">
63-
<HintPath>..\packages\RavenDB-Client.1.0.631-Unstable\lib\net40\Raven.Client.Lightweight.dll</HintPath>
64-
</Reference>
65-
<Reference Include="Raven.Client.MvcIntegration, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
66-
<HintPath>..\packages\RavenDB-Client.1.0.631-Unstable\lib\net40\Raven.Client.MvcIntegration.dll</HintPath>
67-
</Reference>
68-
<Reference Include="System" />
69-
<Reference Include="System.ComponentModel.Composition" />
70-
<Reference Include="System.ComponentModel.DataAnnotations" />
71-
<Reference Include="System.Configuration" />
72-
<Reference Include="System.Core" />
73-
<Reference Include="System.Web" />
74-
<Reference Include="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
75-
<Reference Include="System.Web.Routing" />
76-
<Reference Include="System.Xml.Linq" />
77-
<Reference Include="System.Data.DataSetExtensions" />
78-
<Reference Include="Microsoft.CSharp" />
79-
<Reference Include="System.Data" />
80-
<Reference Include="System.Xml" />
81-
</ItemGroup>
82-
<ItemGroup>
83-
<Compile Include="Extensions\EnumerableExtensions.cs" />
84-
<Compile Include="Extensions\Html5Helpers.cs" />
85-
<Compile Include="Extensions\TimeSpanExtenstions.cs" />
86-
<Compile Include="Extensions\XmlResult.cs" />
87-
<Compile Include="Models\AccountModels.cs" />
88-
<Compile Include="Controllers\RavenController.cs" />
89-
<Compile Include="Models\Configs.cs" />
90-
<Compile Include="Models\DynamicContent.cs" />
91-
<Compile Include="Properties\AssemblyInfo.cs" />
92-
<Compile Include="Routing\LowercaseRoute.cs" />
93-
<Compile Include="Routing\OrganicSeoHelpers.cs" />
94-
<Compile Include="Routing\RouteCollectionExtension.cs" />
95-
<Compile Include="Tasks\BackgroundTask.cs" />
96-
<Compile Include="Tasks\TaskExecutor.cs" />
97-
<Compile Include="Utils\StringRandomizer.cs" />
98-
</ItemGroup>
99-
<ItemGroup />
100-
<ItemGroup>
101-
<None Include="packages.config" />
102-
</ItemGroup>
103-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
104-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
105-
Other similar extension points exist, see Microsoft.Common.targets.
106-
<Target Name="BeforeBuild">
107-
</Target>
108-
<Target Name="AfterBuild">
109-
</Target>
110-
-->
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6+
<ProductVersion>8.0.30703</ProductVersion>
7+
<SchemaVersion>2.0</SchemaVersion>
8+
<ProjectGuid>{238D8AAA-FD89-48E7-9446-ADCDE845B58E}</ProjectGuid>
9+
<OutputType>Library</OutputType>
10+
<AppDesignerFolder>Properties</AppDesignerFolder>
11+
<RootNamespace>HibernatingRhinos.Loci.Common</RootNamespace>
12+
<AssemblyName>HibernatingRhinos.Loci.Common</AssemblyName>
13+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14+
<FileAlignment>512</FileAlignment>
15+
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
16+
<RestorePackages>true</RestorePackages>
17+
</PropertyGroup>
18+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19+
<DebugSymbols>true</DebugSymbols>
20+
<DebugType>full</DebugType>
21+
<Optimize>false</Optimize>
22+
<OutputPath>bin\Debug\</OutputPath>
23+
<DefineConstants>DEBUG;TRACE</DefineConstants>
24+
<ErrorReport>prompt</ErrorReport>
25+
<WarningLevel>4</WarningLevel>
26+
</PropertyGroup>
27+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28+
<DebugType>pdbonly</DebugType>
29+
<Optimize>true</Optimize>
30+
<OutputPath>bin\Release\</OutputPath>
31+
<DefineConstants>TRACE</DefineConstants>
32+
<ErrorReport>prompt</ErrorReport>
33+
<WarningLevel>4</WarningLevel>
34+
</PropertyGroup>
35+
<ItemGroup>
36+
<Reference Include="AsyncCtpLibrary, Version=1.0.4107.18181, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
37+
<HintPath>..\packages\RavenDB-Client.1.0.631-Unstable\lib\net40\AsyncCtpLibrary.dll</HintPath>
38+
</Reference>
39+
<Reference Include="DataAnnotationsExtensions, Version=1.0.1.0, Culture=neutral, PublicKeyToken=358a5681c50fd84c, processorArchitecture=MSIL">
40+
<SpecificVersion>False</SpecificVersion>
41+
<HintPath>..\packages\DataAnnotationsExtensions.1.0.1\lib\NETFramework40\DataAnnotationsExtensions.dll</HintPath>
42+
</Reference>
43+
<Reference Include="DataAnnotationsExtensions.ClientValidation, Version=1.0.1.0, Culture=neutral, PublicKeyToken=358a5681c50fd84c, processorArchitecture=MSIL">
44+
<SpecificVersion>False</SpecificVersion>
45+
<HintPath>..\packages\DataAnnotationsExtensions.MVC3.1.0.1\lib\NETFramework40\DataAnnotationsExtensions.ClientValidation.dll</HintPath>
46+
</Reference>
47+
<Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
48+
<Private>True</Private>
49+
<HintPath>..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
50+
</Reference>
51+
<Reference Include="Newtonsoft.Json, Version=4.0.5.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
52+
<SpecificVersion>False</SpecificVersion>
53+
<HintPath>..\packages\Newtonsoft.Json.4.0.5\lib\net40\Newtonsoft.Json.dll</HintPath>
54+
</Reference>
55+
<Reference Include="NLog">
56+
<HintPath>..\packages\NLog.2.0.0.2000\lib\net40\NLog.dll</HintPath>
57+
</Reference>
58+
<Reference Include="Raven.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=37f41c7f99471593, processorArchitecture=MSIL">
59+
<HintPath>..\packages\RavenDB-Client.1.0.631-Unstable\lib\net40\Raven.Abstractions.dll</HintPath>
60+
</Reference>
61+
<Reference Include="Raven.Client.Debug, Version=1.0.0.0, Culture=neutral, PublicKeyToken=37f41c7f99471593, processorArchitecture=MSIL">
62+
<HintPath>..\packages\RavenDB-Client.1.0.631-Unstable\lib\net40\Raven.Client.Debug.dll</HintPath>
63+
</Reference>
64+
<Reference Include="Raven.Client.Lightweight, Version=1.0.0.0, Culture=neutral, PublicKeyToken=37f41c7f99471593, processorArchitecture=MSIL">
65+
<HintPath>..\packages\RavenDB-Client.1.0.631-Unstable\lib\net40\Raven.Client.Lightweight.dll</HintPath>
66+
</Reference>
67+
<Reference Include="Raven.Client.MvcIntegration, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
68+
<HintPath>..\packages\RavenDB-Client.1.0.631-Unstable\lib\net40\Raven.Client.MvcIntegration.dll</HintPath>
69+
</Reference>
70+
<Reference Include="System" />
71+
<Reference Include="System.ComponentModel.Composition" />
72+
<Reference Include="System.ComponentModel.DataAnnotations" />
73+
<Reference Include="System.Configuration" />
74+
<Reference Include="System.Core" />
75+
<Reference Include="System.Web" />
76+
<Reference Include="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
77+
<Reference Include="System.Web.Routing" />
78+
<Reference Include="System.Xml.Linq" />
79+
<Reference Include="System.Data.DataSetExtensions" />
80+
<Reference Include="Microsoft.CSharp" />
81+
<Reference Include="System.Data" />
82+
<Reference Include="System.Xml" />
83+
</ItemGroup>
84+
<ItemGroup>
85+
<Compile Include="Extensions\EnumerableExtensions.cs" />
86+
<Compile Include="Extensions\Html5Helpers.cs" />
87+
<Compile Include="Extensions\TimeSpanExtenstions.cs" />
88+
<Compile Include="Extensions\XmlResult.cs" />
89+
<Compile Include="Models\AccountModels.cs" />
90+
<Compile Include="Controllers\RavenController.cs" />
91+
<Compile Include="Models\Configs.cs" />
92+
<Compile Include="Models\DynamicContent.cs" />
93+
<Compile Include="Properties\AssemblyInfo.cs" />
94+
<Compile Include="Routing\LowercaseRoute.cs" />
95+
<Compile Include="Routing\OrganicSeoHelpers.cs" />
96+
<Compile Include="Routing\RouteCollectionExtension.cs" />
97+
<Compile Include="Tasks\BackgroundTask.cs" />
98+
<Compile Include="Tasks\TaskExecutor.cs" />
99+
<Compile Include="Utils\StringRandomizer.cs" />
100+
</ItemGroup>
101+
<ItemGroup />
102+
<ItemGroup>
103+
<None Include="packages.config" />
104+
</ItemGroup>
105+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
106+
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />
107+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
108+
Other similar extension points exist, see Microsoft.Common.targets.
109+
<Target Name="BeforeBuild">
110+
</Target>
111+
<Target Name="AfterBuild">
112+
</Target>
113+
-->
111114
</Project>

0 commit comments

Comments
 (0)