Creación automática de la ruta de salida cuando no existe.
git-svn-id: https://192.168.0.254/svn/Proyectos.Tecsitel_FactuGES2/trunk@87 0c75b7a4-871f-7646-8a2f-f78d34cc349f
This commit is contained in:
parent
a674a44449
commit
c6379db01b
@ -1,4 +1,4 @@
|
|||||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" InitialTargets="CreateOutputPath" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
|
||||||
<!-- ASCII Constants -->
|
<!-- ASCII Constants -->
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
@ -28,7 +28,11 @@
|
|||||||
<SqlOutput Include="$(OutputPath)\factuges.fdb" />
|
<SqlOutput Include="$(OutputPath)\factuges.fdb" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<Target Name="Build"
|
<Target Name="CreateOutputPath">
|
||||||
|
<MakeDir Directories="$(OutputPath)" Condition="!Exists('$(OutputPath)')"/>
|
||||||
|
</Target>
|
||||||
|
|
||||||
|
<Target Name="Build"
|
||||||
Inputs="@(Sql)"
|
Inputs="@(Sql)"
|
||||||
Outputs="@(SqlOutput)">
|
Outputs="@(SqlOutput)">
|
||||||
|
|
||||||
|
|||||||
@ -84,7 +84,11 @@
|
|||||||
</CreateProperty>
|
</CreateProperty>
|
||||||
|
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
|
|
||||||
|
<Target Name="CreateOutputPath">
|
||||||
|
<MakeDir Directories="$(OutputPath)" Condition="!Exists('$(OutputPath)')"/>
|
||||||
|
</Target>
|
||||||
|
|
||||||
<Target Name="SvnVerify">
|
<Target Name="SvnVerify">
|
||||||
<Error Text="No UserName or Password for accessing the repository has been specified" Condition=" '$(SvnUsername)' == '' Or '$(SvnPassword)' == '' " />
|
<Error Text="No UserName or Password for accessing the repository has been specified" Condition=" '$(SvnUsername)' == '' Or '$(SvnPassword)' == '' " />
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
<Project DefaultTargets="Ayuda" InitialTargets="GetPaths;GetProjects" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Ayuda" InitialTargets="GetPaths;GetProjects;CreateOutputPath" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<!-- ASCII Constants -->
|
<!-- ASCII Constants -->
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<NEW_LINE>%0D%0A</NEW_LINE>
|
<NEW_LINE>%0D%0A</NEW_LINE>
|
||||||
@ -127,7 +127,7 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<CleanDependsOn>
|
<CleanDependsOn>
|
||||||
$(CleanDependsOn);
|
$(CleanDependsOn);
|
||||||
CleanDatabase
|
CleanDatabase
|
||||||
CleanCode
|
CleanCode
|
||||||
</CleanDependsOn>
|
</CleanDependsOn>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user