casualjim / ironnails

IronNails brings rails like development to IronRuby and WPF/Silverlight

This URL has Read+Write access

casualjim (author)
Fri May 01 13:29:55 -0700 2009
commit  6595510d148ab151ee2f7a5aea014388c184616e
tree    d072e13f9dd1688a27264dd0da6adf5a3e5bb5c4
parent  ed3a7849c6e4c04fc041cacf5fd63280b71922fa
ironnails / IronNails.Library / IronNails.Library.csproj
100644 85 lines (85 sloc) 3.614 kb
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>9.0.30729</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{328B9941-D068-4EDE-9994-A59F1B1AE530}</ProjectGuid>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>IronNails.Library</RootNamespace>
    <AssemblyName>IronNails.Library</AssemblyName>
    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
    <FileAlignment>512</FileAlignment>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>..\IronNails\vendor\iron_nails\bin\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="PresentationCore">
      <RequiredTargetFramework>3.0</RequiredTargetFramework>
    </Reference>
    <Reference Include="PresentationFramework">
      <RequiredTargetFramework>3.0</RequiredTargetFramework>
    </Reference>
    <Reference Include="System" />
    <Reference Include="System.Core">
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
    </Reference>
    <Reference Include="System.Security" />
    <Reference Include="System.Xml.Linq">
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
    </Reference>
    <Reference Include="System.Data.DataSetExtensions">
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
    </Reference>
    <Reference Include="System.Data" />
    <Reference Include="System.Xml" />
    <Reference Include="WindowsBase">
      <RequiredTargetFramework>3.0</RequiredTargetFramework>
    </Reference>
  </ItemGroup>
  <ItemGroup>
    <Compile Include="AsynchronousDelegateCommand.cs" />
    <Compile Include="Base.cs" />
    <Compile Include="Behaviors\ClickBehavior.cs" />
    <Compile Include="Behaviors\Helpers.cs" />
    <Compile Include="Behaviors\MouseBehavior.cs" />
    <Compile Include="BindableCollection.cs" />
    <Compile Include="DelegateCommand.cs" />
    <Compile Include="ObservableDictionary.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
    <Compile Include="XamlProxy.cs" />
    <Compile Include="SecureString.cs" />
    <Compile Include="StaticTypingHelper.cs" />
    <Compile Include="ViewModel.cs" />
    <Compile Include="Workarounds.cs" />
    <Compile Include="WpfValue.cs" />
  </ItemGroup>
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
  -->
  <PropertyGroup>
    <PostBuildEvent>copy $(TargetPath) ..\..\..\..\libs\IronNails.Library.dll</PostBuildEvent>
  </PropertyGroup>
</Project>