Skip to content

Commit

Permalink
fixed bad powerpack reference and updated to use nuget
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisMarinos committed Mar 30, 2011
1 parent 29c9972 commit 6033f20
Show file tree
Hide file tree
Showing 10 changed files with 72 additions and 9,947 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ FSharpKoans.Test/bin/
FSharpKoans.Test/obj/
FSharpKoans2008.suo
FSharpKoans2010.suo
packages/
34 changes: 23 additions & 11 deletions FSharpKoans.Core/FsharpKoans.Core.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
<AssemblyName>FSharpKoans.Core</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<Name>FSharpKoans.Core</Name>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand All @@ -31,26 +33,36 @@
<WarningLevel>3</WarningLevel>
<DocumentationFile>bin\Release\FSharpKoans.Core.XML</DocumentationFile>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath32)\FSharp\1.0\Microsoft.FSharp.Targets" Condition="!Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" />
<Import Project="$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets" Condition=" Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" />
<ItemGroup>
<Compile Include="KoanAttribute.fs" />
<Compile Include="Helpers.fs" />
<Compile Include="KoanResult.fs" />
<Compile Include="KoanContainer.fs" />
<Compile Include="KoanRunner.fs" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Reference Include="FSharp.Compiler.CodeDom, Version=1.9.9.9, Culture=neutral, PublicKeyToken=a19089b1c74d0809" />
<Reference Include="FSharp.Compiler.CodeDom, Version=2.0.0.0, Culture=neutral, PublicKeyToken=a19089b1c74d0809" />
<Reference Include="mscorlib" />
<Reference Include="FSharp.Core" />
<Reference Include="nunit.framework">
<HintPath>..\lib\NUnit\nunit.framework.dll</HintPath>
<HintPath>..\packages\NUnit.2.5.9.10348\lib\nunit.framework.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="nunit.mocks">
<HintPath>..\packages\NUnit.2.5.9.10348\lib\nunit.mocks.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="pnunit.framework">
<HintPath>..\packages\NUnit.2.5.9.10348\lib\pnunit.framework.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Numerics" />
</ItemGroup>
<ItemGroup>
<Compile Include="KoanAttribute.fs" />
<Compile Include="Helpers.fs" />
<Compile Include="KoanResult.fs" />
<Compile Include="KoanContainer.fs" />
<Compile Include="KoanRunner.fs" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\FSharp\1.0\Microsoft.FSharp.Targets" Condition="!Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" />
<Import Project="$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets" Condition=" Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
Expand Down
4 changes: 4 additions & 0 deletions FSharpKoans.Core/packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="NUnit" version="2.5.9.10348" />
</packages>
30 changes: 19 additions & 11 deletions FSharpKoans.Test/FSharpKoans.Test.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,31 +31,39 @@
<WarningLevel>3</WarningLevel>
<DocumentationFile>bin\Release\FSharpKoans.Test.XML</DocumentationFile>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath32)\FSharp\1.0\Microsoft.FSharp.Targets" Condition="!Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" />
<Import Project="$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets" Condition=" Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" />
<ItemGroup>
<Compile Include="FindingKoans.fs" />
<Compile Include="RunningKoans.fs" />
<Compile Include="GettingTheWholeOutput.fs" />
<Compile Include="GettingCompileErrorsInStrings.fs" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="FSharp.Core" />
<Reference Include="nunit.framework">
<HintPath>..\lib\NUnit\nunit.framework.dll</HintPath>
<HintPath>..\packages\NUnit.2.5.9.10348\lib\nunit.framework.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="nunit.mocks">
<HintPath>..\packages\NUnit.2.5.9.10348\lib\nunit.mocks.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="pnunit.framework">
<HintPath>..\packages\NUnit.2.5.9.10348\lib\pnunit.framework.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Numerics" />
</ItemGroup>
<ItemGroup>
<Compile Include="FindingKoans.fs" />
<Compile Include="RunningKoans.fs" />
<Compile Include="GettingTheWholeOutput.fs" />
<Compile Include="GettingCompileErrorsInStrings.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FSharpKoans.Core\FSharpKoans.Core.fsproj">
<Name>FSharpKoans.Core</Name>
<Project>{71460aa5-7357-4f1c-99bc-54244b50b00e}</Project>
<Private>True</Private>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\FSharp\1.0\Microsoft.FSharp.Targets" Condition="!Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" />
<Import Project="$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets" Condition=" Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
Expand Down
4 changes: 4 additions & 0 deletions FSharpKoans.Test/packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="NUnit" version="2.5.9.10348" />
</packages>
6 changes: 6 additions & 0 deletions FSharpKoans/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
</startup>
</configuration>
28 changes: 15 additions & 13 deletions FSharpKoans/FSharpKoans.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
<RootNamespace>FSharpKoans1</RootNamespace>
<AssemblyName>FSharpKoans</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
<Name>FSharpKoans</Name>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
Expand All @@ -35,13 +36,11 @@
<PlatformTarget>x86</PlatformTarget>
<DocumentationFile>bin\Release\FSharpKoans1.XML</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="FSharp.Core" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Numerics" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\FSharp\1.0\Microsoft.FSharp.Targets" Condition="!Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" />
<Import Project="$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets" Condition=" Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" />
<PropertyGroup>
<PreBuildEvent />
</PropertyGroup>
<ItemGroup>
<Compile Include="AboutAsserts.fs" />
<Compile Include="AboutLet.fs" />
Expand All @@ -52,19 +51,22 @@
<Compile Include="AboutPipelining.fs" />
<Compile Include="AboutHowToApplyWhatYouLearnedSoFar.fs" />
<Compile Include="PathToEnlightenment.fs" />
<None Include="App.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="FSharp.Core" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Numerics" />
<ProjectReference Include="..\FSharpKoans.Core\FsharpKoans.Core.fsproj">
<Name>FsharpKoans.Core</Name>
<Project>{71460aa5-7357-4f1c-99bc-54244b50b00e}</Project>
<Private>True</Private>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\FSharp\1.0\Microsoft.FSharp.Targets" Condition="!Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" />
<Import Project="$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets" Condition=" Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" />
<PropertyGroup>
<PreBuildEvent />
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
Expand Down
15 changes: 0 additions & 15 deletions lib/NUnit/nunit-license.txt

This file was deleted.

Binary file removed lib/NUnit/nunit.framework.dll
Binary file not shown.
Loading

0 comments on commit 6033f20

Please sign in to comment.