Dec 14, 2012 at 1:01 AM
Edited Dec 14, 2012 at 1:10 AM
|
I saw today that the nuget extension 2.2.31210.9045 and nuget.exe 2.2.31210.9045 released.
I installed it and changed my nuget package content folders and package.nuspec as shown below to try and make use of the support I understood it was supposed to add for targeting windows store html/js and xaml/c# apps with different contents, package
dependencies and assembly references. When I test it none of the content, package dependencies or assembly references get applied. I also tried using "netcore45-" as the prefix and same result.
Any insights on what i'm doing wrong?
\Contents\windows8-javascript\security\*.html, *.css, *.js
\Contents\windows8-managed\Security\*.xaml.pp, *.xaml.cs.pp
<dependencies>
<group targetFramework="windows8-javascript">
<dependency id="linq.js" version="2.2.0.2" />
</group>
<group targetFramework="windows8-managed">
<dependency id="Callisto" version="1.2.6" />
</group>
</dependencies>
<frameworkAssemblies>
<frameworkAssembly assemblyName="Windows" targetFramework="windows8-managed" />
</frameworkAssemblies>
</metadata>
</package>
|