diff options
author | ArsenShnurkov <ArsenShnurkov@users.noreply.github.com> | 2017-11-01 20:43:29 +0300 |
---|---|---|
committer | ArsenShnurkov <ArsenShnurkov@users.noreply.github.com> | 2017-11-01 20:43:29 +0300 |
commit | c7504abb68532720108655a73860642b99fb1cab (patch) | |
tree | db841ded96b47360f917cebc382bc46196572ce6 /dev-dotnet/castle-dynamicproxy/files | |
parent | initial version of code added (diff) | |
download | dotnet-c7504abb68532720108655a73860642b99fb1cab.tar.gz dotnet-c7504abb68532720108655a73860642b99fb1cab.tar.bz2 dotnet-c7504abb68532720108655a73860642b99fb1cab.zip |
compilation completed
Diffstat (limited to 'dev-dotnet/castle-dynamicproxy/files')
-rw-r--r-- | dev-dotnet/castle-dynamicproxy/files/Castle.Core-vs2008-2.1.0.0.csproj | 45 | ||||
-rw-r--r-- | dev-dotnet/castle-dynamicproxy/files/Castle.DynamicProxy-vs2008-2.1.0.0.csproj | 49 |
2 files changed, 94 insertions, 0 deletions
diff --git a/dev-dotnet/castle-dynamicproxy/files/Castle.Core-vs2008-2.1.0.0.csproj b/dev-dotnet/castle-dynamicproxy/files/Castle.Core-vs2008-2.1.0.0.csproj new file mode 100644 index 0000000..ffd4cdb --- /dev/null +++ b/dev-dotnet/castle-dynamicproxy/files/Castle.Core-vs2008-2.1.0.0.csproj @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> + <ProjectGuid>{E4FA5B53-7D36-429E-8E5C-53D5479242BA}</ProjectGuid> + <OutputType>Library</OutputType> + <RootNamespace>Castle</RootNamespace> + <AssemblyName>Castle.Core</AssemblyName> + <AppDesignerFolder>Properties</AppDesignerFolder> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> + <DefineConstants>TRACE;DEBUG;DOTNET40</DefineConstants> + <OutputPath>bin\Debug\</OutputPath> + <DebugSymbols>true</DebugSymbols> + <Optimize>false</Optimize> + <DebugType>full</DebugType> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> + <DefineConstants>TRACE;DOTNET40</DefineConstants> + <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> + <DebugType>pdbonly</DebugType> + <DebugSymbols>false</DebugSymbols> + </PropertyGroup> + <PropertyGroup> + <AllowUnsafeBlocks>false</AllowUnsafeBlocks> + <NoStdLib>false</NoStdLib> + <WarningLevel>4</WarningLevel> + <NoWarn>1591</NoWarn> + <ErrorReport>prompt</ErrorReport> + </PropertyGroup> + <ItemGroup> + <Reference Include="System" /> + <Reference Include="System.Core" /> + <Reference Include="System.Configuration" /> + <Reference Include="System.Xml" /> + <Reference Include="System.Web" /> + </ItemGroup> + <ItemGroup> + <Compile Include="**/*.cs" /> + </ItemGroup> + <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> +</Project> + diff --git a/dev-dotnet/castle-dynamicproxy/files/Castle.DynamicProxy-vs2008-2.1.0.0.csproj b/dev-dotnet/castle-dynamicproxy/files/Castle.DynamicProxy-vs2008-2.1.0.0.csproj new file mode 100644 index 0000000..52cee76 --- /dev/null +++ b/dev-dotnet/castle-dynamicproxy/files/Castle.DynamicProxy-vs2008-2.1.0.0.csproj @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <ProjectGuid>{2DE7CC8C-6F06-43BC-A7B6-9466BEDEAC28}</ProjectGuid>
+ <OutputType>Library</OutputType>
+ <RootNamespace>Castle.DynamicProxy</RootNamespace>
+ <AssemblyName>Castle.DynamicProxy2</AssemblyName>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DefineConstants>TRACE;DEBUG;PHYSICALASSEMBLY</DefineConstants>
+ <OutputPath>bin\Debug\</OutputPath>
+ <DebugSymbols>true</DebugSymbols>
+ <Optimize>false</Optimize>
+ <DebugType>full</DebugType>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DefineConstants>TRACE;PHYSICALASSEMBLY</DefineConstants>
+ <OutputPath>bin\Release\</OutputPath>
+ <Optimize>true</Optimize>
+ <DebugType>pdbonly</DebugType>
+ <DebugSymbols>false</DebugSymbols>
+ </PropertyGroup>
+ <PropertyGroup>
+ <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
+ <NoStdLib>false</NoStdLib>
+ <WarningLevel>4</WarningLevel>
+ <NoWarn>1591</NoWarn>
+ <ErrorReport>prompt</ErrorReport>
+ </PropertyGroup>
+ <ItemGroup>
+ <Reference Include="System" />
+ <Reference Include="System.Core" />
+ <Reference Include="System.Data" />
+ <Reference Include="System.Xml" />
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="**/*.cs" />
+ </ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\..\Core\Castle.Core\Castle.Core-vs2008.csproj">
+ <Project>{E4FA5B53-7D36-429E-8E5C-53D5479242BA}</Project>
+ <Name>Castle.Core-vs2008</Name>
+ </ProjectReference>
+ </ItemGroup>
+ <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
+</Project>
+
|