Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-addins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/Test
diff options
context:
space:
mode:
authorMatt Ward <matt.ward@microsoft.com>2021-02-05 19:11:48 +0300
committerMatt Ward <matt.ward@microsoft.com>2021-02-05 19:11:48 +0300
commita3015b1a0eae8a35d7f235edf2be4eb063e5c86d (patch)
tree6c2ac868e32abd94c9d1fe53fbab49db713f061e /Test
parent7a14e9355e238ee66394de5fb3719a3841298f3c (diff)
Fix build errors about duplicate assembly attributes
MultiAssemblyAddin project has two projects in its directory and the SDK style file globs were including .cs files from these projects causing compilation errors. These project directories are now excluded from the project.
Diffstat (limited to 'Test')
-rw-r--r--Test/MultiAssemblyAddin/MultiAssemblyAddin.csproj6
1 files changed, 6 insertions, 0 deletions
diff --git a/Test/MultiAssemblyAddin/MultiAssemblyAddin.csproj b/Test/MultiAssemblyAddin/MultiAssemblyAddin.csproj
index 9e00894..422322f 100644
--- a/Test/MultiAssemblyAddin/MultiAssemblyAddin.csproj
+++ b/Test/MultiAssemblyAddin/MultiAssemblyAddin.csproj
@@ -34,6 +34,12 @@
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
+ <None Remove="OptionalModule\**" />
+ <None Remove="SecondAssembly\**" />
+ <Compile Remove="OptionalModule\**" />
+ <Compile Remove="SecondAssembly\**" />
+ </ItemGroup>
+ <ItemGroup>
<ProjectReference Include="..\..\Mono.Addins\Mono.Addins.csproj">
<Project>{91DD5A2D-9FE3-4C3C-9253-876141874DAD}</Project>
<Name>Mono.Addins</Name>