868e663db7
add `/p:MergeWith` example.
15 lines
211 B
C#
15 lines
211 B
C#
using System;
|
|
using Xunit;
|
|
|
|
namespace XUnitTestProject2
|
|
{
|
|
public class UnitTest2
|
|
{
|
|
[Fact]
|
|
public void Test2()
|
|
{
|
|
new ClassLibrary2.Class2().Method();
|
|
}
|
|
}
|
|
}
|