Skip to content
This repository has been archived by the owner on Aug 31, 2022. It is now read-only.

Commit

Permalink
Removed nuget restore and updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix Jorkowski committed Mar 28, 2014
1 parent fe8ebad commit 24ad7a0
Show file tree
Hide file tree
Showing 31 changed files with 5,692 additions and 5,390 deletions.
6 changes: 0 additions & 6 deletions .nuget/NuGet.Config

This file was deleted.

Binary file removed .nuget/NuGet.exe
Binary file not shown.
71 changes: 0 additions & 71 deletions .nuget/NuGet.targets

This file was deleted.

2 changes: 1 addition & 1 deletion NodeAssets.AspNet/LiveCssConnection.cs
Expand Up @@ -2,7 +2,7 @@

namespace NodeAssets.AspNet
{
internal class LiveCssConnection : PersistentConnection
public class LiveCssConnection : PersistentConnection
{
}
}
29 changes: 15 additions & 14 deletions NodeAssets.AspNet/NodeAssets.AspNet.csproj
Expand Up @@ -36,28 +36,29 @@
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.AspNet.SignalR.Core, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<Reference Include="Microsoft.AspNet.SignalR.Core, Version=2.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Microsoft.AspNet.SignalR.Core.2.0.1\lib\net45\Microsoft.AspNet.SignalR.Core.dll</HintPath>
<HintPath>..\packages\Microsoft.AspNet.SignalR.Core.2.0.3\lib\net45\Microsoft.AspNet.SignalR.Core.dll</HintPath>
</Reference>
<Reference Include="Microsoft.AspNet.SignalR.SystemWeb">
<HintPath>..\packages\Microsoft.AspNet.SignalR.SystemWeb.2.0.1\lib\net45\Microsoft.AspNet.SignalR.SystemWeb.dll</HintPath>
<Reference Include="Microsoft.AspNet.SignalR.SystemWeb, Version=2.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Microsoft.AspNet.SignalR.SystemWeb.2.0.3\lib\net45\Microsoft.AspNet.SignalR.SystemWeb.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Owin, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<Reference Include="Microsoft.Owin, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Microsoft.Owin.2.0.2\lib\net45\Microsoft.Owin.dll</HintPath>
<HintPath>..\packages\Microsoft.Owin.2.1.0\lib\net45\Microsoft.Owin.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Owin.Host.SystemWeb, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<Reference Include="Microsoft.Owin.Host.SystemWeb, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Microsoft.Owin.Host.SystemWeb.2.0.2\lib\net45\Microsoft.Owin.Host.SystemWeb.dll</HintPath>
<HintPath>..\packages\Microsoft.Owin.Host.SystemWeb.2.1.0\lib\net45\Microsoft.Owin.Host.SystemWeb.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Owin.Security, Version=2.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<Reference Include="Microsoft.Owin.Security, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Microsoft.Owin.Security.2.0.2\lib\net45\Microsoft.Owin.Security.dll</HintPath>
<HintPath>..\packages\Microsoft.Owin.Security.2.1.0\lib\net45\Microsoft.Owin.Security.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Newtonsoft.Json.5.0.8\lib\net45\Newtonsoft.Json.dll</HintPath>
<HintPath>..\packages\Newtonsoft.Json.6.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="Owin, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f0ebd12fd5e55cc5, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
Expand Down Expand Up @@ -85,6 +86,7 @@
<Compile Include="Scripts\ScriptFinder.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="NodeAssets.AspNet.nuspec">
<SubType>Designer</SubType>
</None>
Expand All @@ -100,14 +102,13 @@
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />
<PropertyGroup>
<PostBuildEvent>rmdir "$(ProjectDir)package" /s /q
mkdir "$(ProjectDir)package\lib\Net40"
Xcopy.exe /Y "$(TargetPath)" "$(ProjectDir)package\lib\Net40"
Xcopy.exe /Y "$(ProjectDir)NodeAssets.AspNet.nuspec" "$(ProjectDir)package"
cd "$(ProjectDir)package"
"$(SolutionDir).nuget\Nuget.exe" pack NodeAssets.AspNet.nuspec
"$(SolutionDir)Nuget.exe" pack NodeAssets.AspNet.nuspec
xcopy /Y *.nupkg "$(TargetDir)"</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
6 changes: 3 additions & 3 deletions NodeAssets.AspNet/NodeAssets.AspNet.nuspec
Expand Up @@ -2,19 +2,19 @@
<package >
<metadata>
<id>NodeAssets.AspNet</id>
<version>2.0.1</version>
<version>2.0.2</version>
<authors>Felix Jorkowski (jorkowski.com)</authors>
<owners>Felix Jorkowski (jorkowski.com)</owners>
<licenseUrl>http://www.opensource.org/licenses/MIT</licenseUrl>
<projectUrl>https://github.com/ajorkowski/NodeAssets</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>The Asp.Net component of node assests, provides a complete assest manager solution including compilation from coffee/styles, minification, combination, compression, and also a refresh-on-change css live updater</description>
<releaseNotes>Version bump on dependencies</releaseNotes>
<releaseNotes>Exposed LiveCssConnection to be able to DI. Version bump on dependencies</releaseNotes>
<copyright>Copyright 2014</copyright>
<tags>Asset Manager OWIN NodeJS</tags>
<dependencies>
<dependency id="NodeAssets.Core" version="2.0.0" />
<dependency id="Microsoft.AspNet.SignalR.SystemWeb" version="2.0.1" />
<dependency id="Microsoft.AspNet.SignalR.SystemWeb" version="2.0.3" />
</dependencies>
</metadata>
</package>
2 changes: 1 addition & 1 deletion NodeAssets.AspNet/Properties/AssemblyInfo.cs
Expand Up @@ -21,4 +21,4 @@
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("24815361-28cb-4543-ba2b-bfaad1877297")]

[assembly: AssemblyVersion("2.0.1.*")]
[assembly: AssemblyVersion("2.0.2.*")]
23 changes: 23 additions & 0 deletions NodeAssets.AspNet/app.config
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.1.0.0" newVersion="2.1.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.1.0.0" newVersion="2.1.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.AspNet.SignalR.Core" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.0.3.0" newVersion="2.0.3.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
12 changes: 6 additions & 6 deletions NodeAssets.AspNet/packages.config
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.AspNet.SignalR.Core" version="2.0.1" targetFramework="net45" />
<package id="Microsoft.AspNet.SignalR.SystemWeb" version="2.0.1" targetFramework="net45" />
<package id="Microsoft.Owin" version="2.0.2" targetFramework="net45" />
<package id="Microsoft.Owin.Host.SystemWeb" version="2.0.2" targetFramework="net45" />
<package id="Microsoft.Owin.Security" version="2.0.2" targetFramework="net45" />
<package id="Newtonsoft.Json" version="5.0.8" targetFramework="net45" />
<package id="Microsoft.AspNet.SignalR.Core" version="2.0.3" targetFramework="net45" />
<package id="Microsoft.AspNet.SignalR.SystemWeb" version="2.0.3" targetFramework="net45" />
<package id="Microsoft.Owin" version="2.1.0" targetFramework="net45" />
<package id="Microsoft.Owin.Host.SystemWeb" version="2.1.0" targetFramework="net45" />
<package id="Microsoft.Owin.Security" version="2.1.0" targetFramework="net45" />
<package id="Newtonsoft.Json" version="6.0.1" targetFramework="net45" />
<package id="Owin" version="1.0" targetFramework="net45" />
</packages>
Expand Up @@ -69,14 +69,13 @@
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />
<PropertyGroup>
<PostBuildEvent>rmdir "$(ProjectDir)package" /s /q
mkdir "$(ProjectDir)package\lib\Net40"
Xcopy.exe /Y "$(TargetPath)" "$(ProjectDir)package\lib\Net40"
Xcopy.exe /Y "$(ProjectDir)NodeAssets.Compilers.CoffeeSharp.nuspec" "$(ProjectDir)package"
cd "$(ProjectDir)package"
"$(SolutionDir).nuget\Nuget.exe" pack NodeAssets.Compilers.CoffeeSharp.nuspec
"$(SolutionDir)Nuget.exe" pack NodeAssets.Compilers.CoffeeSharp.nuspec
xcopy /Y *.nupkg "$(TargetDir)"</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
Expand Up @@ -67,14 +67,13 @@
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />
<PropertyGroup>
<PostBuildEvent>rmdir "$(ProjectDir)package" /s /q
mkdir "$(ProjectDir)package\lib\Net40"
Xcopy.exe /Y "$(TargetPath)" "$(ProjectDir)package\lib\Net40"
Xcopy.exe /Y "$(ProjectDir)NodeAssets.Compilers.Minify.nuspec" "$(ProjectDir)package"
cd "$(ProjectDir)package"
"$(SolutionDir).nuget\Nuget.exe" pack NodeAssets.Compilers.Minify.nuspec
"$(SolutionDir)Nuget.exe" pack NodeAssets.Compilers.Minify.nuspec
xcopy /Y *.nupkg "$(TargetDir)"</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
2 changes: 1 addition & 1 deletion NodeAssets.Compilers.Node/NodeAssets.Compilers.Node.csproj
Expand Up @@ -81,7 +81,7 @@ Xcopy.exe /Y "$(TargetPath)" "$(ProjectDir)package\lib\Net40"
Xcopy.exe /Y "$(ProjectDir)Node\*" "$(ProjectDir)package\content\Node" /s /i
Xcopy.exe /Y "$(ProjectDir)NodeAssets.Compilers.Node.nuspec" "$(ProjectDir)package"
cd "$(ProjectDir)package"
"$(SolutionDir).nuget\Nuget.exe" pack NodeAssets.Compilers.Node.nuspec
"$(SolutionDir)Nuget.exe" pack NodeAssets.Compilers.Node.nuspec
xcopy /Y *.nupkg "$(TargetDir)"</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
3 changes: 1 addition & 2 deletions NodeAssets.Compilers.Sass/NodeAssets.Compilers.Sass.csproj
Expand Up @@ -67,14 +67,13 @@
</Content>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />
<PropertyGroup>
<PostBuildEvent>rmdir "$(ProjectDir)package" /s /q
mkdir "$(ProjectDir)package\lib\Net40"
Xcopy.exe /Y "$(TargetPath)" "$(ProjectDir)package\lib\Net40"
Xcopy.exe /Y "$(ProjectDir)NodeAssets.Compilers.Sass.nuspec" "$(ProjectDir)package"
cd "$(ProjectDir)package"
"$(SolutionDir).nuget\Nuget.exe" pack NodeAssets.Compilers.Sass.nuspec
"$(SolutionDir)Nuget.exe" pack NodeAssets.Compilers.Sass.nuspec
xcopy /Y *.nupkg "$(TargetDir)"</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
Expand Up @@ -63,7 +63,7 @@ mkdir "$(ProjectDir)package\lib\Net40"
Xcopy.exe /Y "$(TargetPath)" "$(ProjectDir)package\lib\Net40"
Xcopy.exe /Y "$(ProjectDir)NodeAssets.Compilers.Typescript.nuspec" "$(ProjectDir)package"
cd "$(ProjectDir)package"
"$(SolutionDir).nuget\Nuget.exe" pack NodeAssets.Compilers.Typescript.nuspec
"$(SolutionDir)Nuget.exe" pack NodeAssets.Compilers.Typescript.nuspec
xcopy /Y *.nupkg "$(TargetDir)"</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
3 changes: 1 addition & 2 deletions NodeAssets.Core/NodeAssets.Core.csproj
Expand Up @@ -61,14 +61,13 @@
</None>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />
<PropertyGroup>
<PostBuildEvent>rmdir "$(ProjectDir)package" /s /q
mkdir "$(ProjectDir)package\lib\Net40"
Xcopy.exe /Y "$(TargetPath)" "$(ProjectDir)package\lib\Net40"
Xcopy.exe /Y "$(ProjectDir)NodeAssets.Core.nuspec" "$(ProjectDir)package"
cd "$(ProjectDir)package"
"$(SolutionDir).nuget\Nuget.exe" pack NodeAssets.Core.nuspec
"$(SolutionDir)Nuget.exe" pack NodeAssets.Core.nuspec
xcopy /Y *.nupkg "$(TargetDir)"</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down

0 comments on commit 24ad7a0

Please sign in to comment.