Ignore:
Timestamp:
05/20/09 16:20:59 (4 years ago)
Author:
sam
Message:

Manually fix Visual Studio files so that builds do not spew
their crap all over the place. There is still caca-sharp/obj
that it insists on creating (reported as Connect ID 301965).

Location:
libcaca/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • libcaca/trunk

    • Property svn:ignore
      •  

        old new  
        1414INSTALL 
        1515caca-config 
        16 Debug 
        17 Release 
        18 x64 
        1916libcaca.suo 
        2017libcaca.ncb 
  • libcaca/trunk/caca-sharp

    • Property svn:ignore
      •  

        old new  
        44*.dll 
        55*.config 
        6 obj 
        76*.user 
  • libcaca/trunk/caca-sharp/caca-sharp.csproj

    r3452 r3490  
    3030    <UseApplicationTrust>false</UseApplicationTrust> 
    3131    <BootstrapperEnabled>true</BootstrapperEnabled> 
     32    <OutputPath>$(SolutionDir)\win32\$(Configuration)\$(Platform)\</OutputPath> 
     33    <BaseOutputPath>$(SolutionDir)\win32\$(Configuration)\$(Platform)\obj-$(AssemblyName)\</BaseOutputPath> 
     34    <IntermediateOutputPath>$(SolutionDir)\win32\$(Configuration)\$(Platform)\obj-$(AssemblyName)\</IntermediateOutputPath> 
    3235  </PropertyGroup> 
    3336  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 
     
    3538    <DebugType>full</DebugType> 
    3639    <Optimize>false</Optimize> 
    37     <OutputPath>..\Debug\</OutputPath> 
    3840    <DefineConstants>DEBUG;TRACE</DefineConstants> 
    3941    <ErrorReport>prompt</ErrorReport> 
     
    4446    <DebugType>pdbonly</DebugType> 
    4547    <Optimize>true</Optimize> 
    46     <OutputPath>..\Release\</OutputPath> 
    4748    <DefineConstants>TRACE</DefineConstants> 
    4849    <ErrorReport>prompt</ErrorReport> 
     
    5253  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> 
    5354    <DebugSymbols>true</DebugSymbols> 
    54     <OutputPath>..\Debug\</OutputPath> 
    5555    <DefineConstants>DEBUG;TRACE</DefineConstants> 
    5656    <DebugType>full</DebugType> 
     
    5959  </PropertyGroup> 
    6060  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> 
    61     <OutputPath>..\Release\</OutputPath> 
    6261    <DefineConstants>TRACE</DefineConstants> 
    6362    <Optimize>true</Optimize> 
     
    6867  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> 
    6968    <DebugSymbols>true</DebugSymbols> 
    70     <OutputPath>bin\x86\Debug\</OutputPath> 
    7169    <DefineConstants>DEBUG;TRACE</DefineConstants> 
    7270    <DebugType>full</DebugType> 
     
    7573  </PropertyGroup> 
    7674  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> 
    77     <OutputPath>bin\x86\Release\</OutputPath> 
    7875    <DefineConstants>TRACE</DefineConstants> 
    7976    <Optimize>true</Optimize> 
     
    123120  </Target> 
    124121  --> 
     122  <PropertyGroup> 
     123    <PreBuildEvent>rd /Q /S $(ProjectDir)\obj</PreBuildEvent> 
     124  </PropertyGroup> 
    125125</Project> 
  • libcaca/trunk/caca-sharp/test-csharp.csproj

    r3465 r3490  
    3131    <UseApplicationTrust>false</UseApplicationTrust> 
    3232    <BootstrapperEnabled>true</BootstrapperEnabled> 
     33    <OutputPath>$(SolutionDir)\win32\$(Configuration)\$(Platform)\</OutputPath> 
     34    <BaseOutputPath>$(SolutionDir)\win32\$(Configuration)\$(Platform)\obj-$(AssemblyName)\</BaseOutputPath> 
     35    <IntermediateOutputPath>$(SolutionDir)\win32\$(Configuration)\$(Platform)\obj-$(AssemblyName)\</IntermediateOutputPath> 
    3336  </PropertyGroup> 
    3437  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 
     
    3639    <DebugType>full</DebugType> 
    3740    <Optimize>false</Optimize> 
    38     <OutputPath>..\Debug\</OutputPath> 
    3941    <DefineConstants>DEBUG;TRACE</DefineConstants> 
    4042    <ErrorReport>prompt</ErrorReport> 
     
    4547    <DebugType>pdbonly</DebugType> 
    4648    <Optimize>true</Optimize> 
    47     <OutputPath>..\Release\</OutputPath> 
    4849    <DefineConstants>TRACE</DefineConstants> 
    4950    <ErrorReport>prompt</ErrorReport> 
     
    5354  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> 
    5455    <DebugSymbols>true</DebugSymbols> 
    55     <OutputPath>..\Debug\</OutputPath> 
    5656    <DefineConstants>DEBUG;TRACE</DefineConstants> 
    5757    <DebugType>full</DebugType> 
     
    6060  </PropertyGroup> 
    6161  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> 
    62     <OutputPath>..\Release\</OutputPath> 
    6362    <DefineConstants>TRACE</DefineConstants> 
    6463    <Optimize>true</Optimize> 
     
    7574  </Target> 
    7675  --> 
     76  <PropertyGroup> 
     77    <PreBuildEvent>rd /Q /S $(ProjectDir)\obj</PreBuildEvent> 
     78  </PropertyGroup> 
    7779  <ItemGroup> 
    7880    <Compile Include="test.cs" /> 
Note: See TracChangeset for help on using the changeset viewer.