Skip to content

Commit 35a4ffb

Browse files
committed
Make sure the thing actually builds.
1 parent 3923ee9 commit 35a4ffb

File tree

4 files changed

+24
-2
lines changed

4 files changed

+24
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ bin
22
obj
33
*.suo
44
*.user
5+
/Releases

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2013 Matt Burke
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software is furnished to do so,
10+
subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21+

NOTICE

2.26 KB
Binary file not shown.

release.proj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<BuildDir>$(SolutionDir)/GitTfsTasks/bin/Release</BuildDir>
1313

1414
<!-- Yo. -->
15-
<TargetPlatform>AnyCPU</TargetPlatform>
15+
<TargetPlatform>Any CPU</TargetPlatform>
1616

1717
<!-- The file that includes the AssemblyVersionAttribute. -->
1818
<VersionFilePath>$(SolutionDir)\GitTfsTasks\Properties\Version.cs</VersionFilePath>
@@ -72,7 +72,7 @@
7272

7373
<!-- Internal: Called by Release to build a release version of git-tfs.exe -->
7474
<Target Name="Build">
75-
<MSBuild Projects="GitTfsTasks.sln" Targets="Rebuild" Properties="Configuration=Release;Platform=$(TargetPlatform);WarningLevel=0" />
75+
<MSBuild Projects="$(SolutionDir)\GitTfsTasks.sln" Targets="Rebuild" Properties="Configuration=Release;Platform=$(TargetPlatform);WarningLevel=0" />
7676
</Target>
7777

7878
<!-- Internal: Called by Release to tag the git-tfs repository. -->

0 commit comments

Comments
 (0)