Skip to content

Commit

Permalink
Merge pull request #13 from ekonbenefits/obsolete_calls_in_dynamitey
Browse files Browse the repository at this point in the history
obsolete calls moved to dynamitey
  • Loading branch information
jbtule committed Aug 17, 2017
2 parents 8f75194 + f4d1ab4 commit e349874
Show file tree
Hide file tree
Showing 197 changed files with 627 additions and 33,083 deletions.
49 changes: 49 additions & 0 deletions .appveyor.yml
@@ -0,0 +1,49 @@
image: Visual Studio 2017

install:
- cmd: git submodule update --init --recursive

configuration: Debug

build: off

skip_branch_with_pr: true

environment:
vsuffix: alpha$(APPVEYOR_BUILD_NUMBER)
is_prerelease: true

before_build:
- cmd: msbuild /t:restore /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"

build_script:
- cmd: msbuild /p:Configuration=%configuration% /p:VersionSuffix="%vsuffix%" /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"

test:
categories:
except:
- Performance

artifacts:
- path: ImpromptuInterface\bin\$(configuration)\*.nupkg
name: ImpromptuInterface

for:
- branches:
except:
- /v.*/
- branches:
only:
- /v.*-beta/
environment:
vsuffix: beta$(APPVEYOR_BUILD_NUMBER)
is_prerelease: true
- branches:
only:
- /v[\d,.]*/
configuration: Release
environment:
vsuffix: $(APPVEYOR_BUILD_NUMBER)
is_prerelease: false


1 change: 1 addition & 0 deletions .ci/.gitignore
@@ -0,0 +1 @@
NuGet.*
14 changes: 14 additions & 0 deletions .ci/RunTests.sh
@@ -0,0 +1,14 @@
#!/bin/sh -x

runTest(){
mono --runtime=v4.0 packages/nunit.runners/2.6.1/tools/nunit-console.exe -noxml -nodots -labels $@
if [ $? -ne 0 ]
then
exit 1
fi
}

runTest Tests/UnitTestImpromptuInterface/bin/Debug/UnitTestImpromptuInterface.dll -exclude=Performance
runTest Tests/UnitTestImpromptuInterface.Clay/bin/Debug/UnitTestImpromptuInterface.Clay.dll -exclude=Performance

exit $?
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -151,3 +151,4 @@ Icon
.Spotlight-V100
.Trashes

.vs/
6 changes: 3 additions & 3 deletions .nuget/NuGet.Config
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<solution>
<add key="disableSourceControlIntegration" value="true" />
</solution>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
</packageSources>
</configuration>
Binary file removed .nuget/NuGet.exe
Binary file not shown.
52 changes: 0 additions & 52 deletions .nuget/NuGet.targets

This file was deleted.

4 changes: 0 additions & 4 deletions .nuget/packages.config

This file was deleted.

26 changes: 26 additions & 0 deletions .travis.yml
@@ -0,0 +1,26 @@
# Travis-CI Build for keyczar-dotnet
# see travis-ci.org for details

language: csharp
matrix:
include:
- os: linux
dist: trusty
sudo: required
- os: osx

solution: ImpromptuInterface.sln

mono:
- beta

install:
- msbuild /t:restore

script:
- msbuild
- .ci/RunTests.sh

branches:
only:
- master
76 changes: 0 additions & 76 deletions ImpromptuInterface.DotNetOnly.sln

This file was deleted.

3 changes: 0 additions & 3 deletions ImpromptuInterface.DotNetOnly.sln.DotSettings

This file was deleted.

This file was deleted.

0 comments on commit e349874

Please sign in to comment.