Click here to Skip to main content
15,881,882 members
Articles / Web Development / ASP.NET

Take MVC to the Next Level in .NET

Rate me:
Please Sign up or sign in to vote.
4.62/5 (11 votes)
30 Apr 2013GPL315 min read 73.1K   858   75  
How to quickly build reusable and flexible WPF, Silverlight, or ASP.NET applications with the powerful Xomega Framework using the best MVVM principles.
<?xml version="1.0" encoding="UTF-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"
         DefaultTargets="Build">
  <PropertyGroup>
      <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
      <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
      <ProductVersion>8.0.50727</ProductVersion>
      <SchemaVersion>2.0</SchemaVersion>
      <ProjectGuid>{7AB30A94-A179-410C-975F-2E58A5DF1935}</ProjectGuid>
      <OutputType>Library</OutputType>
      <AppDesignerFolder>Properties</AppDesignerFolder>
      <RootNamespace>MyProject4.Entities</RootNamespace>
      <AssemblyName>MyProject4.Entities</AssemblyName>
      <ProjectTypeGuids>{3D9AD99F-2412-4246-B90B-4EAA41C64699};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
      <StartArguments>/client:"WcfTestClient.exe"</StartArguments>
      <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
      <DebugSymbols>true</DebugSymbols>
      <DebugType>full</DebugType>
      <Optimize>false</Optimize>
      <OutputPath>bin\Debug\</OutputPath>
      <DefineConstants>DEBUG;TRACE</DefineConstants>
      <ErrorReport>prompt</ErrorReport>
      <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
      <DebugType>pdbonly</DebugType>
      <Optimize>true</Optimize>
      <OutputPath>bin\Release\</OutputPath>
      <DefineConstants>TRACE</DefineConstants>
      <ErrorReport>prompt</ErrorReport>
      <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <ItemGroup>
      <Reference Include="System"/>
      <Reference Include="System.Core">
         <RequiredTargetFramework>3.5</RequiredTargetFramework>
      </Reference>
      <Reference Include="System.Data"/>
      <Reference Include="System.Data.Entity"/>
      <Reference Include="System.Runtime.Serialization">
         <RequiredTargetFramework>3.0</RequiredTargetFramework>
      </Reference>
      <Reference Include="System.ServiceModel">
         <RequiredTargetFramework>3.0</RequiredTargetFramework>
      </Reference>
      <Reference Include="System.Transactions"/>
      <Reference Include="System.Xml.Linq">
         <RequiredTargetFramework>3.5</RequiredTargetFramework>
      </Reference>
      <Reference Include="System.Xml"/>
      <Reference Include="Xomega.Framework">
         <SpecificVersion>False</SpecificVersion>
         <HintPath Condition=" '$(TargetFrameworkVersion)' == 'v3.5' ">$(XomegaHome)Xomega.Framework\lib\net35\Xomega.Framework.dll</HintPath>
         <HintPath Condition=" '$(TargetFrameworkVersion)' == 'v4.0' ">$(XomegaHome)Xomega.Framework\lib\net40\Xomega.Framework.dll</HintPath>
         <HintPath Condition=" '$(TargetFrameworkVersion)|$(TargetFrameworkProfile)' == 'v3.5|Client' ">$(XomegaHome)Xomega.Framework\lib\net35-client\Xomega.Framework.dll</HintPath>
         <HintPath Condition=" '$(TargetFrameworkVersion)|$(TargetFrameworkProfile)' == 'v4.0|Client' ">$(XomegaHome)Xomega.Framework\lib\net40-client\Xomega.Framework.dll</HintPath>
      </Reference>
  </ItemGroup>
  <ItemGroup>
      <Compile Include="EntityModel.Designer.cs">
         <AutoGen>True</AutoGen>
         <DesignTime>True</DesignTime>
         <DependentUpon>EntityModel.edmx</DependentUpon>
      </Compile>
      <Compile Include="Properties\AssemblyInfo.cs"/>
      <Compile Include="Sales\Services\_StoreService.cs">
         <AutoGen>True</AutoGen>
      </Compile>
  </ItemGroup>
  <ItemGroup>
      <None Include="App.config"/>
  </ItemGroup>
  <ItemGroup>
      <ProjectReference Include="..\MyProject4.Services\MyProject4.Services.csproj">
         <Project>{42F27647-8E05-4F56-9A49-00699F18DF9E}</Project>
         <Name>MyProject4.Services</Name>
      </ProjectReference>
  </ItemGroup>
  <ItemGroup>
      <EntityDeploy Include="EntityModel.edmx">
         <AutoGen>True</AutoGen>
         <Generator>EntityModelCodeGenerator</Generator>
         <LastGenOutput>EntityModel.Designer.cs</LastGenOutput>
      </EntityDeploy>
  </ItemGroup>
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets"/>
  <ProjectExtensions>
      <VisualStudio>
         <FlavorProperties GUID="{3D9AD99F-2412-4246-B90B-4EAA41C64699}">
            <WcfProjectProperties>
               <AutoStart>True</AutoStart>
            </WcfProjectProperties>
         </FlavorProperties>
      </VisualStudio>
  </ProjectExtensions>
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
  -->
</Project>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Architect Xomega.Net
United States United States
Xomega Team is striving to increase productivity and development quality by utilizing Model Driven Development coupled with Code Generation and the best design practices for application development.
We provide MDD tools, code generators and frameworks for Visual Studio and .Net development.
Visit us at http://www.xomega.net
This is a Organisation

1 members

Comments and Discussions