1<?xml version="1.0" encoding="utf-8"?> 2<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3 <PropertyGroup> 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 6 <ProductVersion>8.0.30703</ProductVersion> 7 <SchemaVersion>2.0</SchemaVersion> 8 <ProjectGuid>{66A5675A-13AE-4454-88A6-29EB2D6F5988}</ProjectGuid> 9 <OutputType>Library</OutputType> 10 <RootNamespace>Antmicro.Renode.Plugins.SampleCommandPlugin</RootNamespace> 11 <AssemblyName>SampleCommandPlugin</AssemblyName> 12 <TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion> 13 <PropertiesLocation>..\..\..\..\..\output\properties.csproj</PropertiesLocation> 14 <LangVersion>7.2</LangVersion> 15 </PropertyGroup> 16 <Import Project="$(PropertiesLocation)" /> 17 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 18 <DebugSymbols>true</DebugSymbols> 19 <DebugType>full</DebugType> 20 <Optimize>false</Optimize> 21 <OutputPath>bin\Debug</OutputPath> 22 <DefineConstants>DEBUG;$(DefineConstants)</DefineConstants> 23 <ErrorReport>prompt</ErrorReport> 24 <WarningLevel>4</WarningLevel> 25 <ConsolePause>false</ConsolePause> 26 </PropertyGroup> 27 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 28 <DebugType>full</DebugType> 29 <Optimize>true</Optimize> 30 <OutputPath>bin\Release</OutputPath> 31 <ErrorReport>prompt</ErrorReport> 32 <WarningLevel>4</WarningLevel> 33 <ConsolePause>false</ConsolePause> 34 </PropertyGroup> 35 <ItemGroup> 36 <Reference Include="System" /> 37 </ItemGroup> 38 <ItemGroup> 39 <Compile Include="SampleCommandPlugin.cs" /> 40 <Compile Include="HelloCommand.cs" /> 41 </ItemGroup> 42 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 43 <ItemGroup> 44 <ProjectReference Include="..\..\Infrastructure.csproj"> 45 <Project>{D3F10ED0-2A3F-45D5-8524-0D562905778B}</Project> 46 <Name>Infrastructure</Name> 47 </ProjectReference> 48 <ProjectReference Include="..\..\..\..\..\lib\AntShell\AntShell\AntShell.csproj"> 49 <Project>{0A473566-F4C6-455E-A56E-B3963FBABDFF}</Project> 50 <Name>AntShell</Name> 51 </ProjectReference> 52 </ItemGroup> 53 <ProjectExtensions> 54 <MonoDevelop> 55 <Properties> 56 <Policies> 57 <DotNetNamingPolicy DirectoryNamespaceAssociation="PrefixedHierarchical" ResourceNamePolicy="FileName" /> 58 <TextStylePolicy FileWidth="120" TabWidth="4" IndentWidth="4" RemoveTrailingWhitespace="True" TabsToSpaces="True" NoTabsAfterNonTabs="True" EolMarker="Unix" scope="text/x-csharp" /> 59 <CSharpFormattingPolicy IndentBlock="True" IndentBraces="False" IndentSwitchSection="True" IndentSwitchCaseSection="True" LabelPositioning="OneLess" NewLinesForBracesInTypes="True" NewLinesForBracesInMethods="True" NewLinesForBracesInProperties="True" NewLinesForBracesInAccessors="True" NewLinesForBracesInAnonymousMethods="True" NewLinesForBracesInControlBlocks="True" NewLinesForBracesInAnonymousTypes="True" NewLinesForBracesInObjectCollectionArrayInitializers="True" NewLinesForBracesInLambdaExpressionBody="True" NewLineForElse="True" NewLineForCatch="True" NewLineForFinally="True" NewLineForMembersInObjectInit="True" NewLineForMembersInAnonymousTypes="True" NewLineForClausesInQuery="True" SpacingAfterMethodDeclarationName="False" SpaceWithinMethodDeclarationParenthesis="False" SpaceBetweenEmptyMethodDeclarationParentheses="False" SpaceAfterMethodCallName="False" SpaceWithinMethodCallParentheses="False" SpaceBetweenEmptyMethodCallParentheses="False" SpaceWithinExpressionParentheses="False" SpaceWithinCastParentheses="False" SpaceWithinOtherParentheses="False" SpaceAfterCast="False" SpacesIgnoreAroundVariableDeclaration="False" SpaceBeforeOpenSquareBracket="False" SpaceBetweenEmptySquareBrackets="False" SpaceWithinSquareBrackets="False" SpaceAfterColonInBaseTypeDeclaration="True" SpaceAfterComma="True" SpaceAfterDot="False" SpaceAfterSemicolonsInForStatement="True" SpaceBeforeColonInBaseTypeDeclaration="True" SpaceBeforeComma="False" SpaceBeforeDot="False" SpaceBeforeSemicolonsInForStatement="False" SpacingAroundBinaryOperator="Single" WrappingPreserveSingleLine="True" WrappingKeepStatementsOnSingleLine="True" PlaceSystemDirectiveFirst="True" SpaceAfterControlFlowStatementKeyword="False" scope="text/x-csharp" /> 60 <TextStylePolicy FileWidth="120" NoTabsAfterNonTabs="True" EolMarker="Unix" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/plain" /> 61 <StandardHeader IncludeInNewFiles="True" Text="
Copyright (c) 2010-${Year} Antmicro

 This file is licensed under the MIT License.
 Full license text is available in 'licenses/MIT.txt'.
" /> 62 </Policies> 63 </Properties> 64 </MonoDevelop> 65 </ProjectExtensions> 66</Project> 67