forked from msallin/SQLiteCodeFirst
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuildAllConfigurations.proj
More file actions
24 lines (23 loc) · 947 Bytes
/
BuildAllConfigurations.proj
File metadata and controls
24 lines (23 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Rebuild" ToolsVersion="4.0">
<ItemGroup>
<ConfigurationList Include="Debug-40" />
<ConfigurationList Include="Debug-45" />
<ConfigurationList Include="Release-40" />
<ConfigurationList Include="Release-45" />
<PlatformList Include="Any CPU" />
<TargetList Include="Build" />
<ProjectList Include="$(MSBuildProjectDirectory)\SQLite.CodeFirst.sln" />
</ItemGroup>
<Target Name="Rebuild" Outputs="%(PlatformList.Identity)">
<PropertyGroup>
<CurrentPlatform>
%(PlatformList.Identity)
</CurrentPlatform>
</PropertyGroup>
<MSBuild Projects="@(ProjectList)"
Properties="Configuration=%(ConfigurationList.Identity);Platform=$(CurrentPlatform);"
Targets="Rebuild"
SkipNonexistentProjects="true" />
</Target>
</Project>