Browse Source

<Import assembly = "TreeMaps.dll"/> in *.addin otherwise Bamlreader can't find the reference

pull/20/merge
PeterForstmeier 14 years ago
parent
commit
7e140acf56
  1. 1
      src/AddIns/Analysis/CodeQuality/CodeQualityAnalysis.addin
  2. 4
      src/AddIns/Analysis/CodeQuality/CodeQualityAnalysis.csproj
  3. 19
      src/AddIns/Analysis/CodeQuality/TreeMaps/TreeMaps.csproj

1
src/AddIns/Analysis/CodeQuality/CodeQualityAnalysis.addin

@ -9,6 +9,7 @@
</Manifest> </Manifest>
<Runtime> <Runtime>
<Import assembly = "TreeMaps.dll"/>
<Import assembly = "CodeQualityAnalysis.exe"/> <Import assembly = "CodeQualityAnalysis.exe"/>
</Runtime> </Runtime>

4
src/AddIns/Analysis/CodeQuality/CodeQualityAnalysis.csproj

@ -259,10 +259,6 @@
<Project>{3ED2897F-1A8A-4106-89D2-4D342860D480}</Project> <Project>{3ED2897F-1A8A-4106-89D2-4D342860D480}</Project>
<Name>TreeMaps</Name> <Name>TreeMaps</Name>
</ProjectReference> </ProjectReference>
<ProjectReference Include="TreeMaps\TreeMaps.csproj">
<Project>{3ED2897F-1A8A-4106-89D2-4D342860D480}</Project>
<Name>TreeMaps</Name>
</ProjectReference>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Content Include="CodeQualityAnalysis.addin"> <Content Include="CodeQualityAnalysis.addin">

19
src/AddIns/Analysis/CodeQuality/TreeMaps/TreeMaps.csproj

@ -23,16 +23,17 @@
<IsWebBootstrapper>true</IsWebBootstrapper> <IsWebBootstrapper>true</IsWebBootstrapper>
<BootstrapperEnabled>true</BootstrapperEnabled> <BootstrapperEnabled>true</BootstrapperEnabled>
<PublishUrl>Publish\</PublishUrl> <PublishUrl>Publish\</PublishUrl>
<StartupObject>
</StartupObject>
<TargetFrameworkProfile /> <TargetFrameworkProfile />
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<NoStdLib>False</NoStdLib>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols> <DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType> <DebugType>Full</DebugType>
<Optimize>false</Optimize> <Optimize>false</Optimize>
<OutputPath>.\bin\Debug\</OutputPath> <OutputPath>..\..\..\..\AddIns\Analysis\CodeQualityAnalysis\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants> <DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
@ -41,6 +42,16 @@
<OutputPath>.\bin\Release\</OutputPath> <OutputPath>.\bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants> <DefineConstants>TRACE</DefineConstants>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<RegisterForComInterop>False</RegisterForComInterop>
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
<BaseAddress>4194304</BaseAddress>
<PlatformTarget>AnyCPU</PlatformTarget>
<FileAlignment>4096</FileAlignment>
</PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="mscorlib" /> <Reference Include="mscorlib" />
<Reference Include="System" /> <Reference Include="System" />

Loading…
Cancel
Save