I want to source some classes into another project. So, i have created a nuget package and want to use it in the project file(.csproj) file. So, that when i build my project it automatically uses the nuget package.
How do i provide the path for my local nuget package in the project file?
I have tried the below, but it didn't work?
<ItemGroup><ProjectReference Include="..\LocalNugetPackages\MyTestNuget-0.0.1.nupkg" /></ItemGroup>