-
Notifications
You must be signed in to change notification settings - Fork 4
/
LightCore.xml
54 lines (47 loc) · 3.53 KB
/
LightCore.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<OutputPath>C:\Build\LightCore\$(OuputSubFolderName)\</OutputPath>
</PropertyGroup>
<Target Name="Full">
<MSBuild
Projects="LightCore.sln"
Targets="Clean;Build"
Properties="OutputPath=$(OutputPath);Configuration=Release;ToolsVersion=$(ToolsVersion);TargetFrameworkVersion=$(TargetFrameworkVersion);Optimize=true;DebugType=none;BuildTarget=$(BuildTarget);MSBuildTargets=$(BuildTarget);DefineConstants=$(BuildTarget);$(ConstantForBuild)" />
</Target>
<ItemGroup>
<ProjectReferencesFullWithoutTestAndExamples Include="$(MSBuildProjectDirectory)\\LightCore\\LightCore.csproj" />
<ProjectReferencesFullWithoutTestAndExamples Include="$(MSBuildProjectDirectory)\\LightCore.Configuration\\LightCore.Configuration.csproj" />
<ProjectReferencesFullWithoutTestAndExamples Include="$(MSBuildProjectDirectory)\\LightCore.CommonServiceLocator\\LightCore.CommonServiceLocator.csproj" />
<ProjectReferencesFullWithoutTestAndExamples Include="$(MSBuildProjectDirectory)\\LightCore.Integration.Web\\LightCore.Integration.Web.csproj" />
</ItemGroup>
<Target Name="FullWithoutTestAndExamples">
<MSBuild
Projects="@(ProjectReferencesFullWithoutTestAndExamples)"
Targets="Clean;Build"
Properties="OutputPath=$(OutputPath);Configuration=Release;ToolsVersion=$(ToolsVersion);TargetFrameworkVersion=$(TargetFrameworkVersion);Optimize=true;DebugType=none;BuildTarget=$(BuildTarget);MSBuildTargets=$(BuildTarget);DefineConstants=$(BuildTarget);$(ConstantForBuild)" />
</Target>
<ItemGroup>
<ProjectReferencesUnitTests Include="$(MSBuildProjectDirectory)\\LightCore\\LightCore.csproj" />
<ProjectReferencesUnitTests Include="$(MSBuildProjectDirectory)\\LightCore.Configuration\\LightCore.Configuration.csproj" />
<ProjectReferencesUnitTests Include="$(MSBuildProjectDirectory)\\LightCore.CommonServiceLocator\\LightCore.CommonServiceLocator.csproj" />
<ProjectReferencesUnitTests Include="$(MSBuildProjectDirectory)\\LightCore.Integration.Web\\LightCore.Integration.Web.csproj" />
<ProjectReferencesUnitTests Include="$(MSBuildProjectDirectory)\\LightCore.Tests\\LightCore.Tests.csproj" />
<ProjectReferencesUnitTests Include="$(MSBuildProjectDirectory)\\LightCore.Integration.Web.Tests\\LightCore.Integration.Web.Tests.csproj" />
</ItemGroup>
<Target Name="UnitTests">
<MSBuild
Projects="@(ProjectReferencesUnitTests)"
Targets="Clean;Build"
Properties="OutputPath=$(OutputPath);Configuration=Release;ToolsVersion=$(ToolsVersion);TargetFrameworkVersion=$(TargetFrameworkVersion);Optimize=true;DebugType=none;BuildTarget=$(BuildTarget);MSBuildTargets=$(BuildTarget);DefineConstants=$(BuildTarget);$(ConstantForBuild)" />
</Target>
<ItemGroup>
<ProjectReferencesLightCoreOnly Include="$(MSBuildProjectDirectory)\\LightCore\\LightCore.csproj" />
</ItemGroup>
<Target Name="LightCoreOnly">
<MSBuild
Projects="@(ProjectReferencesLightCoreOnly)"
Targets="Clean;Build"
Properties="OutputPath=$(OutputPath);Configuration=Release;ToolsVersion=$(ToolsVersion);TargetFrameworkVersion=$(TargetFrameworkVersion);Optimize=true;DebugType=none;BuildTarget=$(BuildTarget);MSBuildTargets=$(BuildTarget);DefineConstants=$(BuildTarget);$(ConstantForBuild)" />
</Target>
</Project>