forked from Krypton-Suite/Standard-Toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebug.proj
More file actions
29 lines (25 loc) · 976 Bytes
/
Copy pathdebug.proj
File metadata and controls
29 lines (25 loc) · 976 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
25
26
27
28
29
<Project>
<Import Project="Directory.Build.props" />
<PropertyGroup>
<RootFolder>$(MSBuildProjectDirectory)</RootFolder>
<Configuration>Debug</Configuration>
</PropertyGroup>
<Target Name="Clean">
<ItemGroup>
<Projects Include="$(RootFolder)\Source\Krypton Components\Krypton.*\*.csproj" />
</ItemGroup>
<MSBuild Projects="@(Projects)" Properties="Configuration=$(Configuration);TFMs=all" Targets="Clean" />
</Target>
<Target Name="Restore">
<ItemGroup>
<Projects Include="$(RootFolder)\Source\Krypton Components\Krypton.*\*.csproj" />
</ItemGroup>
<MSBuild Projects="@(Projects)" Properties="Configuration=$(Configuration);TFMs=all" Targets="Restore" />
</Target>
<Target Name="Build" DependsOnTargets="Restore">
<ItemGroup>
<Projects Include="$(RootFolder)\Source\Krypton Components\Krypton.*\*.csproj" />
</ItemGroup>
<MSBuild Projects="@(Projects)" Properties="Configuration=$(Configuration);TFMs=all" />
</Target>
</Project>