From: "Mikhail Pukhlikov" <cynede@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/dotnet:master commit in: dev-dotnet/techtalk-specflow/files/, dev-dotnet/techtalk-specflow/
Date: Tue, 31 Oct 2017 08:02:56 +0000 (UTC) [thread overview]
Message-ID: <1509385108.6b3bd2685edd99bf254dfbfa71e9c06161b1dcaf.cynede@gentoo> (raw)
commit: 6b3bd2685edd99bf254dfbfa71e9c06161b1dcaf
Author: ArsenShnurkov <ArsenShnurkov <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Mon Oct 30 17:38:28 2017 +0000
Commit: Mikhail Pukhlikov <cynede <AT> gentoo <DOT> org>
CommitDate: Mon Oct 30 17:38:28 2017 +0000
URL: https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=6b3bd268
compilation implemented
.../files/TechTalk.SpecFlow-1.2.0.0.csproj | 92 ++++++++++++++++++++++
.../techtalk-specflow-1.2.0.0.ebuild | 4 +-
2 files changed, 94 insertions(+), 2 deletions(-)
diff --git a/dev-dotnet/techtalk-specflow/files/TechTalk.SpecFlow-1.2.0.0.csproj b/dev-dotnet/techtalk-specflow/files/TechTalk.SpecFlow-1.2.0.0.csproj
new file mode 100644
index 0000000..ef9eacb
--- /dev/null
+++ b/dev-dotnet/techtalk-specflow/files/TechTalk.SpecFlow-1.2.0.0.csproj
@@ -0,0 +1,92 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <ProjectGuid>{413EE28C-4F89-4C6F-BA1E-2CDEE4CD43B4}</ProjectGuid>
+ <OutputType>Library</OutputType>
+ <AppDesignerFolder>Properties</AppDesignerFolder>
+ <RootNamespace>TechTalk.SpecFlow</RootNamespace>
+ <AssemblyName>TechTalk.SpecFlow</AssemblyName>
+ </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.Configuration" />
+ <Reference Include="System.Core" />
+ <Reference Include="System.Xml.Linq" />
+ <Reference Include="System.Data.DataSetExtensions" />
+ <Reference Include="System.Data" />
+ <Reference Include="System.Xml" />
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="..\VersionInfo.cs">
+ <Link>VersionInfo.cs</Link>
+ </Compile>
+ <Compile Include="StepArgumentTypeConverter.cs" />
+ <Compile Include="Attributes.cs" />
+ <Compile Include="ErrorHandling\BindingException.cs" />
+ <Compile Include="BindingMatch.cs" />
+ <Compile Include="BindingRegistry.cs" />
+ <Compile Include="BindingType.cs" />
+ <Compile Include="Configuration\ConfigurationSectionHandler.cs" />
+ <Compile Include="Configuration\RuntimeConfiguration.cs" />
+ <Compile Include="ErrorHandling\MissingStepDefinitionException.cs" />
+ <Compile Include="ErrorHandling\PendingStepException.cs" />
+ <Compile Include="ErrorHandling\SpecFlowException.cs" />
+ <Compile Include="EventBinding.cs" />
+ <Compile Include="FeatureContext.cs" />
+ <Compile Include="FeatureInfo.cs" />
+ <Compile Include="ITestRunner.cs" />
+ <Compile Include="SpecFlowContext.cs" />
+ <Compile Include="StepArgs.cs" />
+ <Compile Include="StringExtensions.cs" />
+ <Compile Include="Tracing\DefaultListener.cs" />
+ <Compile Include="ErrorHandling\ErrorProvider.cs" />
+ <Compile Include="Tracing\LanguageHelper.cs" />
+ <Compile Include="Tracing\StepDefinitonSkeletonProvider.cs" />
+ <Compile Include="Tracing\StepFormatter.cs" />
+ <Compile Include="UnitTestProvider\MsTestRuntimeProvider.cs" />
+ <Compile Include="UnitTestProvider\NUnitRuntimeProvider.cs" />
+ <Compile Include="ScenarioContext.cs" />
+ <Compile Include="ScenarioBlock.cs" />
+ <Compile Include="ScenarioInfo.cs" />
+ <Compile Include="StepBinding.cs" />
+ <Compile Include="Table.cs" />
+ <Compile Include="TestRunner.cs" />
+ <Compile Include="Properties\AssemblyInfo.cs" />
+ <Compile Include="ObjectContainer.cs" />
+ <Compile Include="Tracing\TestTracer.cs" />
+ <Compile Include="UnitTestProvider\IUnitTestRuntimeProvider.cs" />
+ <Compile Include="Tracing\ITraceListener.cs" />
+ </ItemGroup>
+ <ItemGroup>
+ <EmbeddedResource Include="..\Languages.xml">
+ <Link>Languages.xml</Link>
+ </EmbeddedResource>
+ </ItemGroup>
+ <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+ <!-- 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>
\ No newline at end of file
diff --git a/dev-dotnet/techtalk-specflow/techtalk-specflow-1.2.0.0.ebuild b/dev-dotnet/techtalk-specflow/techtalk-specflow-1.2.0.0.ebuild
index 0dbd17d..427e485 100644
--- a/dev-dotnet/techtalk-specflow/techtalk-specflow-1.2.0.0.ebuild
+++ b/dev-dotnet/techtalk-specflow/techtalk-specflow-1.2.0.0.ebuild
@@ -30,7 +30,7 @@ RDEPEND="${CDEPEND}
DEPEND="${CDEPEND}
"
-PATH_TO_PROJ="TechTalk.SpecFlow"
+PATH_TO_PROJ="Runtime"
METAFILE_TO_BUILD="TechTalk.SpecFlow"
ASSEMBLY_NAME="TechTalk.SpecFlow"
@@ -48,7 +48,7 @@ function output_filename ( ) {
}
src_prepare() {
- #cp "${FILESDIR}/${METAFILE_TO_BUILD}-${PV}.csproj" "${S}/${PATH_TO_PROJ}/${METAFILE_TO_BUILD}.csproj" || die
+ cp "${FILESDIR}/${METAFILE_TO_BUILD}-${PV}.csproj" "${S}/${PATH_TO_PROJ}/${METAFILE_TO_BUILD}.csproj" || die
#cp "${FILESDIR}/CommonAssemblyInfo-${PV}.cs" "${S}/${PATH_TO_PROJ}/../CommonAssemblyInfo.cs" || die
eapply_user
}
reply other threads:[~2017-10-31 8:03 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1509385108.6b3bd2685edd99bf254dfbfa71e9c06161b1dcaf.cynede@gentoo \
--to=cynede@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox