-
Notifications
You must be signed in to change notification settings - Fork 519
New issue
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
.NET 4.6.1 support? #1270
Comments
|
2.30.0.0: </Reference>
</ItemGroup>
</When>
- <When Condition="$(TargetFrameworkIdentifier) == '.NETFramework' And ($(TargetFrameworkVersion) == 'v4.5.1' Or $(TargetFrameworkVersion) == 'v4.5.2' Or $(TargetFrameworkVersion) == 'v4.6' Or $(TargetFrameworkVersion) == 'v4.6.1')">
+ <When Condition="$(TargetFrameworkIdentifier) == '.NETFramework' And ($(TargetFrameworkVersion) == 'v4.5.1' Or $(TargetFrameworkVersion) == 'v4.5.2' Or $(TargetFrameworkVersion) == 'v4.6')">
<ItemGroup>
<Reference Include="AlphaFS">
<HintPath>..\..\packages\AlphaFS\lib\net451\AlphaFS.dll</HintPath> |
|
maybe there is still an issue with ordering, but integration tests show that 4.6.1 is emitted in many places. let me check again. |
|
are you sure you used latest? c349139 shows the sample with AlphaFS and it creates the 4.6.1 tag. What else can be wrong? |
|
I don't know. I added |
|
@vasily-kirichenko does work for you on the integration test? do you have minimal repro? @mrinaldi @isaacabraham any ideas about the redirects? |
|
I revert <dependentAssembly>
<Paket>True</Paket>
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-999.999.999.999" newVersion="4.4.0.0" />
</dependentAssembly> |
|
mhm. that's interesting. |
|
#1273 doesn't add the redirects because it's not needed. (the test still fails if you change the project to target v4.6) If you add to the project the @vasily-kirichenko do you have a small repro for the redirects? |
|
But I explicitly stated that I want them in dependencies file?
|
|
Explicitly stating a dependency should have redirects is any different than stating a global redirects? I guess not. In that case, it'd behave like the global one and generate only the redirects for needed assemblies. Am I wrong here? |
|
No you are right behavior should be the same. I just wonder how I can add
|
|
I guess you can't since #1187. What do you suggest? |
|
The issue with GAC is that you can't know the GAC of the deployment
|
|
👍 Relying on the machine's GAC where you run |
Now project files contain something like this:
If I set target framework version to 4.6.1 (VS 2015 Update 1), then all the references are disappear and nothing compiles.
The text was updated successfully, but these errors were encountered: