-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathfireie.msbuild
More file actions
16 lines (16 loc) · 813 Bytes
/
fireie.msbuild
File metadata and controls
16 lines (16 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"
DefaultTargets="unified">
<ItemGroup>
<SolutionFile Include="plugin.sln" />
</ItemGroup>
<Target Name="clean">
<Exec Command="del /f/q *.xpi" />
<MSBuild Projects="@(SolutionFile)" Targets="Clean" Properties="Configuration=Release;Platform=Win32" />
<MSBuild Projects="@(SolutionFile)" Targets="Clean" Properties="Configuration=Release;Platform=x64" />
</Target>
<Target Name="unified" DependsOnTargets="clean">
<MSBuild Projects="@(SolutionFile)" Targets="Build" Properties="Configuration=Release;Platform=Win32" />
<MSBuild Projects="@(SolutionFile)" Targets="Build" Properties="Configuration=Release;Platform=x64" />
<Exec Command="cd tools & buildxpi-unified.bat" />
</Target>
</Project>