Skip to content

Commit b09294c

Browse files
committed
Merge branch 'release/1.0.0' into production
2 parents 736e4c3 + 4976a83 commit b09294c

46 files changed

Lines changed: 157 additions & 25 deletions

File tree

Some content is hidden

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

.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: csharp
2+
solution: CSF.Zpt.sln
3+
4+
install:
5+
- nuget restore CSF.Zpt.sln
6+
- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
7+
8+
script:
9+
- xbuild /p:Configuration=Debug CSF.Zpt.sln
10+
- mono "./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe" $(find ./Tests/ -type f -path "*/bin/Debug/*" -name "Test*.dll")

CSF.Zpt.Abstractions/CSF.Zpt.Abstractions.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<ProjectTitle>CSF.Zpt.Abstractions</ProjectTitle>
1212
<ProjectDescription>Abstract types &amp; interfaces for ZPT-Sharp.</ProjectDescription>
1313
<PathToSolutionRoot>..</PathToSolutionRoot>
14+
<ReleaseVersion>1.0.0</ReleaseVersion>
1415
</PropertyGroup>
1516
<Import Project="$(PathToSolutionRoot)\Common\SolutionProperties.targets" />
1617
<Import Project="$(PathToSolutionRoot)\Deployment\CSF.Zpt.DeploymentTasks\CSF.Zpt.DeploymentTasks.targets" />

CSF.Zpt.Cli/CSF.Zpt.Cli.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<ProjectTitle>ZptBuilder</ProjectTitle>
1212
<ProjectDescription>Command-line utility for rendering ZPT documents</ProjectDescription>
1313
<PathToSolutionRoot>..</PathToSolutionRoot>
14+
<ReleaseVersion>1.0.0</ReleaseVersion>
1415
</PropertyGroup>
1516
<Import Project="$(PathToSolutionRoot)\Common\SolutionProperties.targets" />
1617
<Import Project="$(PathToSolutionRoot)\Deployment\CSF.Zpt.DeploymentTasks\CSF.Zpt.DeploymentTasks.targets" />

CSF.Zpt.Log4net/CSF.Zpt.Log4net.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<ProjectTitle>CSF.Zpt.Log4Net</ProjectTitle>
1212
<ProjectDescription>Log4net Trace Listener</ProjectDescription>
1313
<PathToSolutionRoot>..</PathToSolutionRoot>
14+
<ReleaseVersion>1.0.0</ReleaseVersion>
1415
</PropertyGroup>
1516
<Import Project="$(PathToSolutionRoot)\Common\SolutionProperties.targets" />
1617
<Import Project="$(PathToSolutionRoot)\Deployment\CSF.Zpt.DeploymentTasks\CSF.Zpt.DeploymentTasks.targets" />

CSF.Zpt.MVC5/CSF.Zpt.MVC5.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<ProjectTitle>CSF.Zpt.MVC5</ProjectTitle>
1212
<ProjectDescription>ASP.NET MVC5 integration for ZPT-Sharp</ProjectDescription>
1313
<PathToSolutionRoot>..</PathToSolutionRoot>
14+
<ReleaseVersion>1.0.0</ReleaseVersion>
1415
</PropertyGroup>
1516
<Import Project="$(PathToSolutionRoot)\Common\SolutionProperties.targets" />
1617
<Import Project="$(PathToSolutionRoot)\Deployment\CSF.Zpt.DeploymentTasks\CSF.Zpt.DeploymentTasks.targets" />

CSF.Zpt.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -338,5 +338,6 @@ Global
338338
$1.inheritsSet = VisualStudio
339339
$1.inheritsScope = text/plain
340340
$1.scope = text/plain
341+
version = 1.0.0
341342
EndGlobalSection
342343
EndGlobal

CSF.Zpt/CSF.Zpt.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<ProjectTitle>CSF.Zpt</ProjectTitle>
1212
<ProjectDescription>Core ZPT-Sharp logic</ProjectDescription>
1313
<PathToSolutionRoot>..</PathToSolutionRoot>
14+
<ReleaseVersion>1.0.0</ReleaseVersion>
1415
</PropertyGroup>
1516
<Import Project="$(PathToSolutionRoot)\Common\SolutionProperties.targets" />
1617
<Import Project="$(PathToSolutionRoot)\Deployment\CSF.Zpt.DeploymentTasks\CSF.Zpt.DeploymentTasks.targets" />

Deployment/CSF.Zpt.Deployment/CSF.Zpt.Deployment.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<AssemblyName>CSF.Zpt.Deployment</AssemblyName>
1010
<PathToSolutionRoot>..\..</PathToSolutionRoot>
1111
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
12+
<ReleaseVersion>1.0.0</ReleaseVersion>
1213
</PropertyGroup>
1314
<Import Project="$(PathToSolutionRoot)\Common\SolutionProperties.targets" />
1415
<Import Project="$(PathToSolutionRoot)\Deployment\CSF.Zpt.DeploymentTasks\CSF.Zpt.DeploymentTasks.targets" />

Deployment/CSF.Zpt.DeploymentTasks/CSF.Zpt.DeploymentTasks.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<RootNamespace>CSF.Zpt.DeploymentTasks</RootNamespace>
99
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1010
<AssemblyName>CSF.Zpt.DeploymentTasks</AssemblyName>
11+
<ReleaseVersion>1.0.0</ReleaseVersion>
1112
</PropertyGroup>
1213
<Import Project="..\..\Common\SolutionProperties.targets" />
1314
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
@@ -38,7 +39,7 @@
3839
<HintPath>..\..\packages\CSF.IniDocuments.6.0.1\lib\net45\CSF.IniDocuments.dll</HintPath>
3940
</Reference>
4041
<Reference Include="HtmlAgilityPack">
41-
<HintPath>..\..\packages\HtmlAgilityPack.1.4.9\lib\Net45\HtmlAgilityPack.dll</HintPath>
42+
<HintPath>..\..\packages\HtmlAgilityPack.1.4.9.5\lib\Net45\HtmlAgilityPack.dll</HintPath>
4243
</Reference>
4344
<Reference Include="System.Xml" />
4445
</ItemGroup>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="CSF.IniDocuments" version="6.0.1" targetFramework="net45" />
4-
<package id="HtmlAgilityPack" version="1.4.9" targetFramework="net45" />
4+
<package id="HtmlAgilityPack" version="1.4.9.5" targetFramework="net45" />
55
</packages>

0 commit comments

Comments
 (0)