| 1 | <?xml version="1.0" encoding="utf-8"?> |
|---|
| 2 | <Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|---|
| 3 | <PropertyGroup> |
|---|
| 4 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
|---|
| 5 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
|---|
| 6 | <ProductVersion>9.0.30729</ProductVersion> |
|---|
| 7 | <SchemaVersion>2.0</SchemaVersion> |
|---|
| 8 | <ProjectGuid>{59F7ED0F-3589-4112-B612-4A9A6588F4A0}</ProjectGuid> |
|---|
| 9 | <OutputType>Library</OutputType> |
|---|
| 10 | <AppDesignerFolder>Properties</AppDesignerFolder> |
|---|
| 11 | <RootNamespace>Eraser.Plugins</RootNamespace> |
|---|
| 12 | <AssemblyName>Eraser.Plugins</AssemblyName> |
|---|
| 13 | <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> |
|---|
| 14 | <FileAlignment>512</FileAlignment> |
|---|
| 15 | <SignAssembly>true</SignAssembly> |
|---|
| 16 | <AssemblyOriginatorKeyFile>..\Strong Name.snk</AssemblyOriginatorKeyFile> |
|---|
| 17 | </PropertyGroup> |
|---|
| 18 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
|---|
| 19 | <DebugSymbols>true</DebugSymbols> |
|---|
| 20 | <DebugType>full</DebugType> |
|---|
| 21 | <Optimize>false</Optimize> |
|---|
| 22 | <OutputPath>..\bin\Debug\</OutputPath> |
|---|
| 23 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
|---|
| 24 | <ErrorReport>prompt</ErrorReport> |
|---|
| 25 | <WarningLevel>4</WarningLevel> |
|---|
| 26 | </PropertyGroup> |
|---|
| 27 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
|---|
| 28 | <DebugType>pdbonly</DebugType> |
|---|
| 29 | <Optimize>true</Optimize> |
|---|
| 30 | <OutputPath>..\bin\Release\</OutputPath> |
|---|
| 31 | <DefineConstants>TRACE</DefineConstants> |
|---|
| 32 | <ErrorReport>prompt</ErrorReport> |
|---|
| 33 | <WarningLevel>4</WarningLevel> |
|---|
| 34 | </PropertyGroup> |
|---|
| 35 | <ItemGroup> |
|---|
| 36 | <Reference Include="System" /> |
|---|
| 37 | <Reference Include="System.Core"> |
|---|
| 38 | <RequiredTargetFramework>3.5</RequiredTargetFramework> |
|---|
| 39 | </Reference> |
|---|
| 40 | <Reference Include="System.Windows.Forms" /> |
|---|
| 41 | <Reference Include="System.Xml.Linq"> |
|---|
| 42 | <RequiredTargetFramework>3.5</RequiredTargetFramework> |
|---|
| 43 | </Reference> |
|---|
| 44 | <Reference Include="System.Data" /> |
|---|
| 45 | <Reference Include="System.Xml" /> |
|---|
| 46 | </ItemGroup> |
|---|
| 47 | <ItemGroup> |
|---|
| 48 | <Compile Include="..\Version.cs"> |
|---|
| 49 | <Link>Version.cs</Link> |
|---|
| 50 | </Compile> |
|---|
| 51 | <Compile Include="AssemblyInfo.cs" /> |
|---|
| 52 | <Compile Include="IConfigurer.cs" /> |
|---|
| 53 | <Compile Include="IPlugin.cs" /> |
|---|
| 54 | <Compile Include="IRegistrar.cs" /> |
|---|
| 55 | <Compile Include="LoadingPolicy.cs" /> |
|---|
| 56 | <Compile Include="PluginInfo.cs" /> |
|---|
| 57 | <Compile Include="PluginLoadedEventArgs.cs" /> |
|---|
| 58 | <Compile Include="PluginLoadEventArgs.cs" /> |
|---|
| 59 | <Compile Include="Host.cs" /> |
|---|
| 60 | <Compile Include="Properties\AssemblyInfo.cs" /> |
|---|
| 61 | </ItemGroup> |
|---|
| 62 | <ItemGroup> |
|---|
| 63 | <ProjectReference Include="..\Eraser.Util\Eraser.Util.csproj"> |
|---|
| 64 | <Project>{D083E1A8-3A4C-4683-9B3F-D5FEDE61B9C9}</Project> |
|---|
| 65 | <Name>Eraser.Util</Name> |
|---|
| 66 | </ProjectReference> |
|---|
| 67 | </ItemGroup> |
|---|
| 68 | <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
|---|
| 69 | <!-- To modify your build process, add your task inside one of the targets below and uncomment it. |
|---|
| 70 | Other similar extension points exist, see Microsoft.Common.targets. |
|---|
| 71 | <Target Name="BeforeBuild"> |
|---|
| 72 | </Target> |
|---|
| 73 | <Target Name="AfterBuild"> |
|---|
| 74 | </Target> |
|---|
| 75 | --> |
|---|
| 76 | </Project> |
|---|