We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In converting hyprlinkr, There are a number of items in the Hyprlinkr.UnitTest.csproj project that are .cs files coming from netfx-reflector
Hyprlinkr.UnitTest.csproj
.cs
netfx-reflector
The package is completely declarative - no .ps1 files etc.
.ps1
install (with and without --hard) takes the input:
install
--hard
<Compile Include="netfx\System\Reflection\Reflect.cs" /> <Compile Include="netfx\System\Reflection\Reflect.Overloads.cs"> <AutoGen>True</AutoGen> <DesignTime>True</DesignTime> <DependentUpon>Reflect.Overloads.tt</DependentUpon> </Compile>
And adds conflicting files at the end (but it leaves the existing ones, so it actually compiles):
<ItemGroup> <Content Include="netfx\System\Reflection\Reflect.cs"> <Paket>True</Paket> </Content> <Content Include="netfx\System\Reflection\Reflect.Overloads.tt"> <Paket>True</Paket> </Content> <Content Include="netfx\System\Reflection\TargetFramework.ttinclude"> <Paket>True</Paket> </Content> </ItemGroup>
Not pulling out a separate issue re .tt file handling as yet.
.tt
Simpler package to repro is a dependency of netfx-reflect: netfx-guard
netfx-reflect
netfx-guard
dependencies
source http://nuget.org/api/v2 nuget AutoFixture 3.16.4 nuget AutoFixture.AutoMoq 3.16.4 nuget AutoFixture.Idioms 3.16.4 nuget AutoFixture.Xunit 3.16.4 nuget Microsoft.AspNet.Mvc != 4.0.20710.0 nuget Microsoft.AspNet.WebApi != 4.0.20710.0 nuget Moq 4.2.1312.1622 nuget netfx-Reflector nuget Newtonsoft.Json 5.0.8 nuget NuGet.CommandLine nuget xunit 1.9.2 nuget xunit.runners 1.9.2 nuget Zero29
The text was updated successfully, but these errors were encountered:
@theimowski can you please look into this?
Sorry, something went wrong.
Sure, but after the weekend - I'm on DevDay conference in Krakow ;)
👍
implement DetermineBuildAction - references fsprojects#161
e19ab2e
No branches or pull requests
In converting hyprlinkr, There are a number of items in the
Hyprlinkr.UnitTest.csproj
project that are.cs
files coming fromnetfx-reflector
The package is completely declarative - no
.ps1
files etc.install
(with and without--hard
) takes the input:And adds conflicting files at the end (but it leaves the existing ones, so it actually compiles):
Not pulling out a separate issue re
.tt
file handling as yet.Simpler package to repro is a dependency of
netfx-reflect
:netfx-guard
dependencies
The text was updated successfully, but these errors were encountered: