Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/19/19 17:15:59 (5 years ago)
Author:
dpiringe
Message:

#2924:

  • migrated PluginInfrastructure to .NET Standard
  • created a new .NET Core project HeuristicLab.PluginInfrastructure.Runner, which contains the logic to load and isolate assemblies, based on the new interfaces from HeuristicLab.PluginInfrastructure
  • recycled old plugin validation code
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2924_DotNetCoreMigration/HeuristicLab.PluginInfrastructure/3.3/HeuristicLab.PluginInfrastructure-3.3.csproj

    r16147 r16859  
    11<?xml version="1.0" encoding="utf-8"?>
    2 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
     2<Project Sdk="Microsoft.NET.Sdk">
    33  <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>{94186A6A-5176-4402-AE83-886557B53CCA}</ProjectGuid>
    9     <OutputType>Library</OutputType>
    10     <AppDesignerFolder>Properties</AppDesignerFolder>
    11     <RootNamespace>HeuristicLab.PluginInfrastructure</RootNamespace>
    12     <AssemblyName>HeuristicLab.PluginInfrastructure-3.3</AssemblyName>
    13     <StartupObject>
    14     </StartupObject>
     4    <TargetFramework>netstandard2.0</TargetFramework>
     5    <Copyright>(c) 2002-2018 HEAL</Copyright>
     6    <Product>HeuristicLab</Product>
    157    <SignAssembly>true</SignAssembly>
    168    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
    17     <FileUpgradeFlags>
    18     </FileUpgradeFlags>
    19     <OldToolsVersion>3.5</OldToolsVersion>
    20     <UpgradeBackupLocation>
    21     </UpgradeBackupLocation>
    22     <TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
    23     <TargetFrameworkProfile>
    24     </TargetFrameworkProfile>
    25     <PublishUrl>publish\</PublishUrl>
    26     <Install>true</Install>
    27     <InstallFrom>Disk</InstallFrom>
    28     <UpdateEnabled>false</UpdateEnabled>
    29     <UpdateMode>Foreground</UpdateMode>
    30     <UpdateInterval>7</UpdateInterval>
    31     <UpdateIntervalUnits>Days</UpdateIntervalUnits>
    32     <UpdatePeriodically>false</UpdatePeriodically>
    33     <UpdateRequired>false</UpdateRequired>
    34     <MapFileExtensions>true</MapFileExtensions>
    35     <ApplicationRevision>0</ApplicationRevision>
    36     <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
    37     <IsWebBootstrapper>false</IsWebBootstrapper>
    38     <UseApplicationTrust>false</UseApplicationTrust>
    39     <BootstrapperEnabled>true</BootstrapperEnabled>
     9    <AssemblyVersion>3.3.0.0</AssemblyVersion>
     10    <AssemblyFileVersion>3.3.15.16192</AssemblyFileVersion>
     11    <RootNamespace>HeuristicLab.PluginInfrastructure</RootNamespace>
    4012  </PropertyGroup>
    41   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    42     <DebugSymbols>true</DebugSymbols>
    43     <DebugType>full</DebugType>
    44     <Optimize>false</Optimize>
    45     <OutputPath>$(SolutionDir)\bin\</OutputPath>
    46     <DefineConstants>DEBUG;TRACE</DefineConstants>
    47     <ErrorReport>prompt</ErrorReport>
    48     <WarningLevel>4</WarningLevel>
    49     <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
    50     <Prefer32Bit>false</Prefer32Bit>
    51   </PropertyGroup>
    52   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    53     <DebugType>pdbonly</DebugType>
    54     <Optimize>true</Optimize>
    55     <OutputPath>$(SolutionDir)\bin\</OutputPath>
    56     <DefineConstants>TRACE</DefineConstants>
    57     <ErrorReport>prompt</ErrorReport>
    58     <WarningLevel>4</WarningLevel>
    59     <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
    60     <DocumentationFile>
    61     </DocumentationFile>
    62     <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
    63     <Prefer32Bit>false</Prefer32Bit>
    64   </PropertyGroup>
    65   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
    66     <DebugSymbols>true</DebugSymbols>
    67     <OutputPath>$(SolutionDir)\bin\</OutputPath>
    68     <DefineConstants>DEBUG;TRACE</DefineConstants>
    69     <DebugType>full</DebugType>
    70     <PlatformTarget>x86</PlatformTarget>
    71     <ErrorReport>prompt</ErrorReport>
    72     <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
    73     <Prefer32Bit>false</Prefer32Bit>
    74   </PropertyGroup>
    75   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
    76     <OutputPath>$(SolutionDir)\bin\</OutputPath>
    77     <DefineConstants>TRACE</DefineConstants>
    78     <DocumentationFile>
    79     </DocumentationFile>
    80     <Optimize>true</Optimize>
    81     <DebugType>pdbonly</DebugType>
    82     <PlatformTarget>x86</PlatformTarget>
    83     <ErrorReport>prompt</ErrorReport>
    84     <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
    85     <Prefer32Bit>false</Prefer32Bit>
    86   </PropertyGroup>
    87   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
    88     <DebugSymbols>true</DebugSymbols>
    89     <OutputPath>$(SolutionDir)\bin\</OutputPath>
    90     <DefineConstants>DEBUG;TRACE</DefineConstants>
    91     <DebugType>full</DebugType>
    92     <PlatformTarget>x64</PlatformTarget>
    93     <ErrorReport>prompt</ErrorReport>
    94     <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
    95     <Prefer32Bit>false</Prefer32Bit>
    96   </PropertyGroup>
    97   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
    98     <OutputPath>$(SolutionDir)\bin\</OutputPath>
    99     <DefineConstants>TRACE</DefineConstants>
    100     <DocumentationFile>
    101     </DocumentationFile>
    102     <Optimize>true</Optimize>
    103     <DebugType>pdbonly</DebugType>
    104     <PlatformTarget>x64</PlatformTarget>
    105     <ErrorReport>prompt</ErrorReport>
    106     <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
    107     <Prefer32Bit>false</Prefer32Bit>
     13 
     14  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
     15    <OutputPath>..\..\bin\</OutputPath>
     16    <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
    10817  </PropertyGroup>
    10918  <ItemGroup>
    110     <Reference Include="Microsoft.Win32.Registry, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
    111       <HintPath>..\..\packages\Microsoft.Win32.Registry.4.5.0\lib\net461\Microsoft.Win32.Registry.dll</HintPath>
    112     </Reference>
    113     <Reference Include="Microsoft.Win32.Registry.AccessControl, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
    114       <HintPath>..\..\packages\Microsoft.Win32.Registry.AccessControl.4.5.0\lib\net461\Microsoft.Win32.Registry.AccessControl.dll</HintPath>
    115     </Reference>
    116     <Reference Include="Microsoft.Win32.SystemEvents, Version=4.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
    117       <HintPath>..\..\packages\Microsoft.Win32.SystemEvents.4.5.0\lib\net461\Microsoft.Win32.SystemEvents.dll</HintPath>
    118     </Reference>
    119     <Reference Include="System" />
    120     <Reference Include="System.CodeDom, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
    121       <HintPath>..\..\packages\System.CodeDom.4.5.0\lib\net461\System.CodeDom.dll</HintPath>
    122     </Reference>
    123     <Reference Include="System.ComponentModel.Composition" />
    124     <Reference Include="System.Configuration" />
    125     <Reference Include="System.Configuration.ConfigurationManager, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
    126       <HintPath>..\..\packages\System.Configuration.ConfigurationManager.4.5.0\lib\net461\System.Configuration.ConfigurationManager.dll</HintPath>
    127     </Reference>
    128     <Reference Include="System.Core" />
    129     <Reference Include="System.Data" />
    130     <Reference Include="System.Data.DataSetExtensions" />
    131     <Reference Include="System.Data.Odbc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
    132       <HintPath>..\..\packages\System.Data.Odbc.4.5.0\lib\net461\System.Data.Odbc.dll</HintPath>
    133     </Reference>
    134     <Reference Include="System.Data.OracleClient" />
    135     <Reference Include="System.Data.SqlClient, Version=4.4.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
    136       <HintPath>..\..\packages\System.Data.SqlClient.4.5.0\lib\net461\System.Data.SqlClient.dll</HintPath>
    137     </Reference>
    138     <Reference Include="System.Diagnostics.EventLog, Version=4.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
    139       <HintPath>..\..\packages\System.Diagnostics.EventLog.4.5.0\lib\net461\System.Diagnostics.EventLog.dll</HintPath>
    140     </Reference>
    141     <Reference Include="System.Diagnostics.PerformanceCounter, Version=4.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
    142       <HintPath>..\..\packages\System.Diagnostics.PerformanceCounter.4.5.0\lib\net461\System.Diagnostics.PerformanceCounter.dll</HintPath>
    143     </Reference>
    144     <Reference Include="System.DirectoryServices" />
    145     <Reference Include="System.DirectoryServices.AccountManagement" />
    146     <Reference Include="System.DirectoryServices.Protocols" />
    147     <Reference Include="System.Drawing" />
    148     <Reference Include="System.Drawing.Common, Version=4.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
    149       <HintPath>..\..\packages\System.Drawing.Common.4.5.0\lib\net461\System.Drawing.Common.dll</HintPath>
    150     </Reference>
    151     <Reference Include="System.IdentityModel" />
    152     <Reference Include="System.IO.FileSystem.AccessControl, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
    153       <HintPath>..\..\packages\System.IO.FileSystem.AccessControl.4.5.0\lib\net461\System.IO.FileSystem.AccessControl.dll</HintPath>
    154     </Reference>
    155     <Reference Include="System.IO.FileSystem.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
    156       <HintPath>..\..\packages\System.IO.FileSystem.Primitives.4.3.0\lib\net46\System.IO.FileSystem.Primitives.dll</HintPath>
    157     </Reference>
    158     <Reference Include="System.IO.Packaging, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
    159       <HintPath>..\..\packages\System.IO.Packaging.4.5.0\lib\net46\System.IO.Packaging.dll</HintPath>
    160     </Reference>
    161     <Reference Include="System.IO.Pipes.AccessControl, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
    162       <HintPath>..\..\packages\System.IO.Pipes.AccessControl.4.5.0\lib\net461\System.IO.Pipes.AccessControl.dll</HintPath>
    163     </Reference>
    164     <Reference Include="System.IO.Ports, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
    165       <HintPath>..\..\packages\System.IO.Ports.4.5.0\lib\net461\System.IO.Ports.dll</HintPath>
    166     </Reference>
    167     <Reference Include="System.Management" />
    168     <Reference Include="System.Net" />
    169     <Reference Include="System.Runtime.Caching" />
    170     <Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
    171       <HintPath>..\..\packages\System.Runtime.CompilerServices.Unsafe.4.5.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
    172     </Reference>
    173     <Reference Include="System.Runtime.Serialization" />
    174     <Reference Include="System.Security" />
    175     <Reference Include="System.Security.AccessControl, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
    176       <HintPath>..\..\packages\System.Security.AccessControl.4.5.0\lib\net461\System.Security.AccessControl.dll</HintPath>
    177     </Reference>
    178     <Reference Include="System.Security.Cryptography.Cng, Version=4.3.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
    179       <HintPath>..\..\packages\System.Security.Cryptography.Cng.4.5.0\lib\net47\System.Security.Cryptography.Cng.dll</HintPath>
    180     </Reference>
    181     <Reference Include="System.Security.Cryptography.Pkcs, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
    182       <HintPath>..\..\packages\System.Security.Cryptography.Pkcs.4.5.0\lib\net461\System.Security.Cryptography.Pkcs.dll</HintPath>
    183     </Reference>
    184     <Reference Include="System.Security.Cryptography.ProtectedData, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
    185       <HintPath>..\..\packages\System.Security.Cryptography.ProtectedData.4.5.0\lib\net461\System.Security.Cryptography.ProtectedData.dll</HintPath>
    186     </Reference>
    187     <Reference Include="System.Security.Cryptography.Xml, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
    188       <HintPath>..\..\packages\System.Security.Cryptography.Xml.4.5.0\lib\net461\System.Security.Cryptography.Xml.dll</HintPath>
    189     </Reference>
    190     <Reference Include="System.Security.Permissions, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
    191       <HintPath>..\..\packages\System.Security.Permissions.4.5.0\lib\net461\System.Security.Permissions.dll</HintPath>
    192     </Reference>
    193     <Reference Include="System.Security.Principal.Windows, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
    194       <HintPath>..\..\packages\System.Security.Principal.Windows.4.5.0\lib\net461\System.Security.Principal.Windows.dll</HintPath>
    195     </Reference>
    196     <Reference Include="System.ServiceModel" />
    197     <Reference Include="System.ServiceModel.Duplex, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
    198       <HintPath>..\..\packages\System.ServiceModel.Duplex.4.4.1\lib\net461\System.ServiceModel.Duplex.dll</HintPath>
    199     </Reference>
    200     <Reference Include="System.ServiceModel.Http, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
    201       <HintPath>..\..\packages\System.ServiceModel.Http.4.4.1\lib\net461\System.ServiceModel.Http.dll</HintPath>
    202     </Reference>
    203     <Reference Include="System.ServiceModel.NetTcp, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
    204       <HintPath>..\..\packages\System.ServiceModel.NetTcp.4.4.1\lib\net461\System.ServiceModel.NetTcp.dll</HintPath>
    205     </Reference>
    206     <Reference Include="System.ServiceModel.Primitives, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
    207       <HintPath>..\..\packages\System.ServiceModel.Primitives.4.4.1\lib\net461\System.ServiceModel.Primitives.dll</HintPath>
    208     </Reference>
    209     <Reference Include="System.ServiceModel.Syndication, Version=4.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
    210       <HintPath>..\..\packages\System.ServiceModel.Syndication.4.5.0\lib\net461\System.ServiceModel.Syndication.dll</HintPath>
    211     </Reference>
    212     <Reference Include="System.ServiceProcess" />
    213     <Reference Include="System.ServiceProcess.ServiceController, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
    214       <HintPath>..\..\packages\System.ServiceProcess.ServiceController.4.5.0\lib\net461\System.ServiceProcess.ServiceController.dll</HintPath>
    215     </Reference>
    216     <Reference Include="System.Text.Encoding.CodePages, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
    217       <HintPath>..\..\packages\System.Text.Encoding.CodePages.4.5.0\lib\net461\System.Text.Encoding.CodePages.dll</HintPath>
    218     </Reference>
    219     <Reference Include="System.Threading.AccessControl, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
    220       <HintPath>..\..\packages\System.Threading.AccessControl.4.5.0\lib\net461\System.Threading.AccessControl.dll</HintPath>
    221     </Reference>
    222     <Reference Include="System.Transactions" />
    223     <Reference Include="System.Xml" />
    224     <Reference Include="WindowsBase" />
     19    <PackageReference Include="System.CodeDom" Version="4.5.0" />
     20    <PackageReference Include="System.Drawing.Common" Version="4.5.1" />
     21    <PackageReference Include="System.Security.Cryptography.ProtectedData" Version="4.5.0" />
     22    <PackageReference Include="System.ServiceModel.Primitives" Version="4.5.3" />
     23    <PackageReference Include="System.Configuration.ConfigurationManager" Version="4.5.0" />
     24    <PackageReference Include="System.Security.Cryptography.Primitives" Version="4.3.0" />
    22525  </ItemGroup>
    226   <ItemGroup>
    227     <Compile Include="ApplicationBase.cs" />
    228     <Compile Include="ApplicationDescription.cs" />
    229     <Compile Include="AssemblyExtensions.cs" />
    230     <Compile Include="CommandLineArgumentHandling\Arguments\OpenArgument.cs" />
    231     <Compile Include="CommandLineArgumentHandling\Arguments\HideStarterArgument.cs" />
    232     <Compile Include="CommandLineArgumentHandling\Arguments\StartArgument.cs" />
    233     <Compile Include="CommandLineArgumentHandling\CommandLineArgument.cs" />
    234     <Compile Include="CommandLineArgumentHandling\CommandLineArgumentHandling.cs" />
    235     <Compile Include="CommandLineArgumentHandling\ICommandLineArgument.cs" />
    236     <Compile Include="Attributes\ApplicationAttribute.cs" />
    237     <Compile Include="Attributes\ContactInformationAttribute.cs" />
    238     <Compile Include="Attributes\NonDiscoverableTypeAttribute.cs" />
    239     <Compile Include="Attributes\PluginAttribute.cs" />
    240     <Compile Include="Attributes\PluginDependencyAttribute.cs" />
    241     <Compile Include="Attributes\PluginFileAttribute.cs" />
    242     <Compile Include="PluginBase.cs" />
    243     <Compile Include="PluginDescription.cs" />
    244     <Compile Include="PluginFile.cs" />
    245     <Compile Include="PluginInfrastructureEventArgs.cs" />
    246     <Compile Include="PluginManager.cs" />
    247     <Compile Include="PluginValidator.cs" />
    248     <Compile Include="SandboxApplicationManager.cs" />
    249     <Compile Include="DefaultApplicationManager.cs" />
    250     <Compile Include="LightweightApplicationManager.cs" />
    251     <Compile Include="Interfaces\IPluginFile.cs" />
    252     <Compile Include="Interfaces\IApplicationManager.cs" />
    253     <Compile Include="Interfaces\IApplicationDescription.cs" />
    254     <Compile Include="Interfaces\IApplication.cs" />
    255     <Compile Include="Interfaces\IPlugin.cs" />
    256     <Compile Include="Interfaces\IPluginDescription.cs" />
    257     <Compile Include="InvalidPluginException.cs" />
    258     <Compile Include="PluginDescriptionIterator.cs" />
    259     <Compile Include="ApplicationManager.cs" />
    260     <Compile Include="PluginState.cs" />
    261     <Compile Include="Properties\AssemblyInfo.cs" />
    262     <Compile Include="SandboxManager.cs" />
    263     <Compile Include="TypeExtensions.cs" />
    264     <None Include="app.config">
    265       <SubType>Designer</SubType>
    266     </None>
    267     <None Include="HeuristicLab.snk" />
    268     <None Include="packages.config" />
    269     <None Include="Properties\AssemblyInfo.cs.frame" />
    270   </ItemGroup>
    271   <ItemGroup>
    272     <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
    273       <Visible>False</Visible>
    274       <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
    275       <Install>false</Install>
    276     </BootstrapperPackage>
    277     <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
    278       <Visible>False</Visible>
    279       <ProductName>.NET Framework 3.5 SP1</ProductName>
    280       <Install>true</Install>
    281     </BootstrapperPackage>
    282     <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
    283       <Visible>False</Visible>
    284       <ProductName>Windows Installer 3.1</ProductName>
    285       <Install>true</Install>
    286     </BootstrapperPackage>
    287   </ItemGroup>
    288   <ItemGroup />
    289   <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
    290   <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
    291        Other similar extension points exist, see Microsoft.Common.targets.
    292   <Target Name="BeforeBuild">
    293   </Target>
    294   <Target Name="AfterBuild">
    295   </Target>
    296   -->
    297   <PropertyGroup>
    298     <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    299 set ProjectDir=$(ProjectDir)
    300 set SolutionDir=$(SolutionDir)
    301 set Outdir=$(Outdir)
    302 
    303 call PreBuildEvent.cmd</PreBuildEvent>
    304     <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
    305 export ProjectDir=$(ProjectDir)
    306 export SolutionDir=$(SolutionDir)
    307 
    308 $SolutionDir/PreBuildEvent.sh
    309 </PreBuildEvent>
    310   </PropertyGroup>
    31126</Project>
Note: See TracChangeset for help on using the changeset viewer.