Importing custom nuget package with Functions

Hi i am trying to build a library of custom formatters ( VB functions ) and i created a nuget package out of it. i loaded the package into my studio using package manager but seem to be getting the following error.

Main.xaml: BC30451: ‘VenuUtils’ is not declared. It may be inaccessible due to its protection level. Variable ‘VenuUtils’ is missing. Please use Data Manager to recreate it.

The name space in the package is also not visible in my project. below is the source code for nuget package

Imports System.Text.RegularExpressions

Namespace Global.VenuUtils
Module NumberFormat
Public Class CommonFunctions
Public Shared Function IsAlphabeticalOnly(ByVal Str As String) As Boolean
Dim pattern As String = “[1]+$”
Dim reg As New Regex(pattern)
Return reg.IsMatch(Str)
End Function
End Class

End Module

End Namespace


  1. a-zA-Z\s ↩︎

Imports System.Text.RegularExpressions

Namespace VenuUtils

Public Class CommonFunctions
Public Shared Function IsAlphabeticalOnly(ByVal Str As String) As Boolean
Dim pattern As String = “[1]+$”
Dim reg As New Regex(pattern)
Return reg.IsMatch(Str)
End Function
End Class

End Namespace


  1. a-zA-Z ↩︎