-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathBuildAll_Debug_net.csproj
More file actions
42 lines (42 loc) · 2.08 KB
/
Copy pathBuildAll_Debug_net.csproj
File metadata and controls
42 lines (42 loc) · 2.08 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Solution Include="SAM_Revit/SAM_Revit.sln">
<Properties>Configuration=Debug2025; Platform=Any CPU;TargetFramework=net8.0-windows</Properties>
</Solution>
<Solution Include="SAM_Revit_UI/SAM_Revit_UI.sln">
<Properties>Configuration=Debug2025;Platform=Any CPU;TargetFramework=net8.0-windows</Properties>
</Solution>
<Solution Include="SAM_Revit/SAM_Revit.sln">
<Properties>Configuration=Debug2026; Platform=Any CPU;TargetFramework=net8.0-windows</Properties>
</Solution>
<Solution Include="SAM_Revit_UI/SAM_Revit_UI.sln">
<Properties>Configuration=Debug2026;Platform=Any CPU;TargetFramework=net8.0-windows</Properties>
</Solution>
<!-- <Solution Include="SAM_UI/Framework/SAM_UI.sln">
<Properties>Configuration=Debug;Platform=Any CPU</Properties>
</Solution>-->
<!-- <Solution Include="SAM_Rhino_UI/SAM_Rhino_UI.sln">
<Properties>Configuration=Debug;Platform=Any CPU</Properties>
</Solution> test
<Solution Include="SAM_Multitasker/SAM_Multitasker.sln">
<Properties>Configuration=Debug;Platform=Any CPU</Properties>
</Solution>-->
</ItemGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
</PropertyGroup>
<Target Name="Build">
<MSBuild Projects="@(Solution)" BuildInParallel="false" Targets="Build" Properties="Configuration=$(Configuration);OutputPath=%(Projects.BuildOutputPath)" />
</Target>
<Target Name="Clean">
<MSBuild Projects="@(Solution)" BuildInParallel="false" Targets="Clean" />
</Target>
<Target Name="Rebuild">
<MSBuild Projects="@(Solution)" BuildInParallel="false" Targets="Rebuild" />
</Target>
<Target Name="Restore">
<MSBuild Projects="@(Solution)" BuildInParallel="false" Targets="Restore" Properties="Configuration=$(Configuration);OutputPath=%(Projects.BuildOutputPath)" />
</Target>
</Project>