mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-28 19:01:43 +03:00
91 lines
4.8 KiB
XML
91 lines
4.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProductVersion>10.0.20506</ProductVersion>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<ProjectGuid>{23F63AE9-A436-4B27-9113-4142C09ADD08}</ProjectGuid>
|
|
<ProjectTypeGuids>{C089C8C0-30E0-4E22-80C0-CE093F111A43};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>MicroIoc</RootNamespace>
|
|
<AssemblyName>MicroIoc</AssemblyName>
|
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
|
<SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion>
|
|
<TargetFrameworkProfile>WindowsPhone</TargetFrameworkProfile>
|
|
<TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier>
|
|
<SilverlightApplication>false</SilverlightApplication>
|
|
<ValidateXaml>true</ValidateXaml>
|
|
<ThrowErrorsInValidation>true</ThrowErrorsInValidation>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>Bin\Debug</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE;SILVERLIGHT;WINDOWS_PHONE</DefineConstants>
|
|
<NoStdLib>true</NoStdLib>
|
|
<NoConfig>true</NoConfig>
|
|
<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;SILVERLIGHT;WINDOWS_PHONE</DefineConstants>
|
|
<NoStdLib>true</NoStdLib>
|
|
<NoConfig>true</NoConfig>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'GPS_EMULATOR|AnyCPU'">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<OutputPath>bin\GPS_EMULATOR\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE;SILVERLIGHT;WINDOWS_PHONE</DefineConstants>
|
|
<NoStdLib>true</NoStdLib>
|
|
<DebugType>full</DebugType>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<CodeAnalysisLogFile>Bin\Debug\MicroIoc.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
|
|
<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
|
|
<CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
<CodeAnalysisRuleSetDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
|
|
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
|
|
<CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System.Windows" />
|
|
<Reference Include="system" />
|
|
<Reference Include="System.Core" />
|
|
<Reference Include="System.Xml" />
|
|
<Reference Include="System.Net" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Configuration\ContainerConfiguration.cs" />
|
|
<Compile Include="Configuration\IConfiguration.cs" />
|
|
<Compile Include="Configuration\InjectedConstructorParam.cs" />
|
|
<Compile Include="Configuration\InjectedMemberBase.cs" />
|
|
<Compile Include="Configuration\InjectedProperty.cs" />
|
|
<Compile Include="Container\IMicroIocContainer.cs" />
|
|
<Compile Include="Attributes\InjectAttribute.cs" />
|
|
<Compile Include="Container\MicroIocContainer.cs" />
|
|
<Compile Include="Extensions\ConfigurationExtensions.cs" />
|
|
<Compile Include="Extensions\PatternExtensions.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="Exceptions\ResolutionException.cs" />
|
|
<Compile Include="Tuple.cs" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight for Phone\$(TargetFrameworkVersion)\Microsoft.Silverlight.$(TargetFrameworkProfile).Overrides.targets" />
|
|
<Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight for Phone\$(TargetFrameworkVersion)\Microsoft.Silverlight.CSharp.targets" />
|
|
<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> |