Skip to content

Commit

Permalink
fix project type. update travis config.
Browse files Browse the repository at this point in the history
  • Loading branch information
endel committed Oct 2, 2016
1 parent 442fa6e commit 87642e7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ mono:
- 3.12.0
- 3.10.0
install:
- nuget restore solution-name.sln
- nuget restore FossilDelta.sln
- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Release solution-name.sln
- mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe ./MyPoject.Tests/bin/Release/MyProject.Tests.dll
- xbuild /p:Configuration=Release FossilDelta.sln
- mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe ./Tests/bin/Release/Tests.dll
10 changes: 4 additions & 6 deletions Source/Source.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,10 @@
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<ProjectGuid>{90A6D728-0F92-4DED-A49B-F0BE69887E86}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>Source</RootNamespace>
<AssemblyName>Source</AssemblyName>
<TargetFrameworkProfile>Profile78</TargetFrameworkProfile>
<RootNamespace>Fossil</RootNamespace>
<AssemblyName>Delta</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
Expand Down Expand Up @@ -36,5 +34,5 @@
<Compile Include="RollingHash.cs" />
<Compile Include="Writer.cs" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
</Project>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>

0 comments on commit 87642e7

Please sign in to comment.