nuget spec dependencies, get latest version?

后端 未结 4 1816
旧时难觅i
旧时难觅i 2020-12-03 04:43

In the nuspec versioning docs I see

1.0  = 1.0 ≤ x
(,1.0]  = x ≤ 1.0
(,1.0)  = x < 1.0
[1.0] = x == 1.0
(1.0) = invalid
(1.0,) = 1.0 < x
(1.0,2.0) = 1.         


        
4条回答
  •  情深已故
    2020-12-03 05:11

    You can modify your .cspoj file to execute a "BeforeBuild" target like this :

    Note that : u'll need to have the "Nuget.exe" in ur solution directory.

提交回复
热议问题