Replies: 3 comments 1 reply
|
Yes, I would expect the same too. Can you upload a copy of the sample (zip of the source and all the YAML and other config files) and I will experiment with it and find out the issues |
0 replies
|
Excellent This is the complete raw log This is a simple c# class library. This is my yml file Thanks, |
1 reply
|
Excellent -it works, thanks for quick response |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I guess I miss something fundamental here :-) .
For test purposes, I'm publishing a simple .NetFx48 function as a NuGet package to my own Azure DevOps artifact feeds
namespace CalculatorAdd { public class Class1 { public int Add(int a, int b) { return a + b; } } }My yml looks like
The task VersionAssemblies@3 runs smooth and produces output like
However, after packing the NuGet package following VersionAssemblies@3 (same yml job/steps)
my "Calculator" still has Version 1.0.0.0 when installed in a simple console application:

I expect my NuPkg to have version 2.0.11 and C# Assembly 2.0.11.1 in this test.
Thanks
All reactions