12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup />
- <ItemGroup>
- <ApplicationDefinition Update="App.xaml">
- <SubType>Designer</SubType>
- </ApplicationDefinition>
- </ItemGroup>
- <ItemGroup>
- <Compile Update="View\ListUsers.xaml.cs">
- <SubType>Code</SubType>
- </Compile>
- <Compile Update="View\MainMenu.xaml.cs">
- <SubType>Code</SubType>
- </Compile>
- <Compile Update="View\Registration.xaml.cs">
- <SubType>Code</SubType>
- </Compile>
- <Compile Update="View\ListProblems.xaml.cs">
- <SubType>Code</SubType>
- </Compile>
- <Compile Update="View\UserProfile.xaml.cs">
- <SubType>Code</SubType>
- </Compile>
- </ItemGroup>
- <ItemGroup>
- <Page Update="View\ListUsers.xaml">
- <SubType>Designer</SubType>
- </Page>
- <Page Update="View\MainWindow.xaml">
- <SubType>Designer</SubType>
- </Page>
- <Page Update="View\MainMenu.xaml">
- <SubType>Designer</SubType>
- </Page>
- <Page Update="View\Registration.xaml">
- <SubType>Designer</SubType>
- </Page>
- <Page Update="View\ListProblems.xaml">
- <SubType>Designer</SubType>
- </Page>
- <Page Update="View\UserProfile.xaml">
- <SubType>Designer</SubType>
- </Page>
- </ItemGroup>
- </Project>
|