File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
<!-- http://www.jeremyskinner.co.uk/2011/01/12/automating-nuget-package-creation-with-msbuild-and-powershell/ -->
2
- <Project xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion =" 4 .0" DefaultTargets =" default" >
2
+ <Project xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion =" 14 .0" DefaultTargets =" default" >
3
3
<PropertyGroup >
4
4
<BaseDir >$(MSBuildProjectDirectory)\..</BaseDir >
5
5
<Configuration Condition =" '$(Configuration)'==''" >Release</Configuration >
6
6
<BuildDir >$(BaseDir)\Build</BuildDir >
7
7
<PackageDir >$(BuildDir)\Packages</PackageDir >
8
8
<SolutionFile >$(BaseDir)\Griddly.sln</SolutionFile >
9
9
<MSBuildExtensions >$(BaseDir)\.build\MSBuild.Community.Tasks.dll</MSBuildExtensions >
10
+ <VisualStudioVersion >14.0</VisualStudioVersion >
10
11
</PropertyGroup >
11
12
12
13
<UsingTask AssemblyFile =" $(MSBuildExtensions)" TaskName =" MSBuild.Community.Tasks.XmlUpdate" />
13
14
14
15
<Target Name =" default" DependsOnTargets =" Compile; Package" />
15
16
16
17
<Target Name =" Compile" >
17
- <MSBuild Projects =" $(SolutionFile)" Properties =" Configuration=$(Configuration)" />
18
+ <MSBuild Projects =" $(SolutionFile)" Properties =" Configuration=$(Configuration);VisualStudioVersion=$(VisualStudioVersion) " />
18
19
</Target >
19
20
20
21
<Target Name =" Package" >
You can’t perform that action at this time.
0 commit comments