Skip to content

Commit

Permalink
add dependency information to nuspec file
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal Niegrzybowski committed Dec 17, 2017
1 parent aeeecde commit 800462a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions WebApiFSharp.Template.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,11 @@
<packageTypes>
<packageType name="Template"/>
</packageTypes>
<dependencies>
<dependency id="Microsoft.AspNetCore.All" version="[2.0.0, 3.0.0)"/>
<dependency id="Microsoft.Extensions.Logging.Debug" version="[2.0.0, 3.0.0)"/>
<dependency id="Microsoft.DotNet.Watcher.Tools" version="[2.0.0, 3.0.0)"/>
<dependency id="FSharp.Core" version="[4.1.0, 4.2.0)"/>
</dependencies>
</metadata>
</package>
6 changes: 3 additions & 3 deletions webapifsharp.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@

<ItemGroup>
<PackageReference Include="FSharp.Core" Version="4.1.*" />
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.*"/>
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="2.0.*" />
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.*"/>
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="2.*" />
</ItemGroup>

<ItemGroup>
<DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="2.0.*" />
<DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="2.*" />
</ItemGroup>
</Project>

0 comments on commit 800462a

Please sign in to comment.