ILRepack.IntegrationTests/Scenarios/LibraryUserControlUsageInXAML/MainWindow.xaml (9 lines of code) (raw):
<Window x:Class="LibraryUserControlUsageInXAML.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:classLibrary="clr-namespace:ClassLibrary;assembly=ClassLibrary"
Title="MainWindow" Height="350" Width="525" Loaded="MainWindowLoaded">
<Grid>
<classLibrary:DummyUserControl />
</Grid>
</Window>