Browse Source

Fix nesting of XAML files

pull/847/head
Sam Harwell 8 years ago
parent
commit
331aeb9b7e
  1. 22
      ILSpy/ILSpy.csproj

22
ILSpy/ILSpy.csproj

@ -159,6 +159,7 @@ @@ -159,6 +159,7 @@
<Compile Include="Commands\RefreshCommand.cs" />
<Compile Include="Commands\SaveCommand.cs" />
<Compile Include="SearchPane.cs">
<DependentUpon>SearchPane.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Include="Commands\SimpleCommand.cs" />
@ -245,7 +246,9 @@ @@ -245,7 +246,9 @@
</Compile>
<Compile Include="SessionSettings.cs" />
<Compile Include="TextView\CaretHighlightAdorner.cs" />
<Compile Include="TextView\DecompilerTextView.cs" />
<Compile Include="TextView\DecompilerTextView.cs">
<DependentUpon>DecompilerTextView.xaml</DependentUpon>
</Compile>
<Compile Include="TextView\OutputLengthExceededException.cs" />
<Compile Include="TextView\ReferenceElementGenerator.cs" />
<Compile Include="TextView\AvalonEditTextOutput.cs" />
@ -283,9 +286,7 @@ @@ -283,9 +286,7 @@
<SubType>Designer</SubType>
</Page>
<Page Include="Controls\ResourceStringTable.xaml" />
<Page Include="Controls\SearchBoxStyle.xaml">
<DependentUpon>SearchBox.cs</DependentUpon>
</Page>
<Page Include="Controls\SearchBoxStyle.xaml" />
<Page Include="CreateListDialog.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
@ -300,12 +301,8 @@ @@ -300,12 +301,8 @@
<Page Include="Options\DecompilerSettingsPanel.xaml" />
<Page Include="Options\DisplaySettingsPanel.xaml" />
<Page Include="Options\OptionsDialog.xaml" />
<Page Include="SearchPane.xaml">
<DependentUpon>SearchPane.cs</DependentUpon>
</Page>
<Page Include="TextView\DecompilerTextView.xaml">
<DependentUpon>DecompilerTextView.cs</DependentUpon>
</Page>
<Page Include="SearchPane.xaml" />
<Page Include="TextView\DecompilerTextView.xaml" />
<Page Include="themes\generic.xaml" />
</ItemGroup>
@ -365,4 +362,9 @@ @@ -365,4 +362,9 @@
<Resource Include="Images\Sort.png" />
</ItemGroup>
<ItemGroup>
<None Include="@(Page)" />
<None Include="@(Resource)" />
</ItemGroup>
</Project>
Loading…
Cancel
Save