Skip to content

Commit

Permalink
nuget config for .exe missing, which breaks appveyor build
Browse files Browse the repository at this point in the history
  • Loading branch information
Edwin Young committed Sep 19, 2015
1 parent e81b051 commit b1bb856
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
3 changes: 2 additions & 1 deletion Prequel.exe/Prequel.exe.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="App.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Prequel\Prequel.Library.csproj">
Expand All @@ -78,4 +79,4 @@
</PropertyGroup>
<Error Condition="!Exists('..\packages\MSBuild.Extension.Pack.1.6.0\build\net40\MSBuild.Extension.Pack.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\MSBuild.Extension.Pack.1.6.0\build\net40\MSBuild.Extension.Pack.targets'))" />
</Target>
</Project>
</Project>
4 changes: 4 additions & 0 deletions Prequel.exe/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="MSBuild.Extension.Pack" version="1.6.0" targetFramework="net45" />
</packages>
9 changes: 2 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
---
title: Prequel
layout: default
---

[![Build status](https://ci.appveyor.com/api/projects/status/ebtg15yc3wls89yi/branch/master?svg=true)](https://ci.appveyor.com/project/edyoung/prequel/branch/master)

# Prequel.
# Prequel

Prequel was born out of working on a product which contains a large number of database schemas and stored procedures.
Every so often, a really basic error would be accidentally committed to the repository - sometimes, the SQL had syntax errors.
Expand Down Expand Up @@ -33,7 +28,7 @@ And it will print out
c:\temp\foo.sql(1) : WARNING 3 : Procedure sp_foo does not SET NOCOUNT ON
c:\temp\foo.sql(2) : WARNING 2 : Variable @myvar declared but never used

## Installation and prerequisites.
## Installation and prerequisites

Prequel requires the Microsoft SQL Server 2014 Transact-SQL ScriptDom package, which can be found on
[http://www.microsoft.com/en-us/download/details.aspx?id=42295](http://www.microsoft.com/en-us/download/details.aspx?id=42295).
Expand Down

0 comments on commit b1bb856

Please sign in to comment.