Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>

<Target Name="DisallowPacking" BeforeTargets="Pack">
<Target Name="DisallowPacking" BeforeTargets="Pack" Condition="'$(IsPackable)' == 'true'">
<Error Text="System.Runtime.Internal should never be shipped outside of this repository so building a NuGet package for it is blocked as there is no use case for a NuGet package of an entirely repo-local assembly." />
</Target>

Expand Down
2 changes: 1 addition & 1 deletion src/tests/Interop/COM/Activator/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace Activator
[ComVisible(false)]
[Guid("00000001-0000-0000-C000-000000000046")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IClassFactory
interface IClassFactory
{
void CreateInstance(
[MarshalAs(UnmanagedType.Interface)] object pUnkOuter,
Expand Down