AssemblyVersionInfo.vb 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #Region "Apache License"
  2. '
  3. ' Licensed to the Apache Software Foundation (ASF) under one or more
  4. ' contributor license agreements. See the NOTICE file distributed with
  5. ' this work for additional information regarding copyright ownership.
  6. ' The ASF licenses this file to you under the Apache License, Version 2.0
  7. ' (the "License"); you may not use this file except in compliance with
  8. ' the License. You may obtain a copy of the License at
  9. '
  10. ' http://www.apache.org/licenses/LICENSE-2.0
  11. '
  12. ' Unless required by applicable law or agreed to in writing, software
  13. ' distributed under the License is distributed on an "AS IS" BASIS,
  14. ' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. ' See the License for the specific language governing permissions and
  16. ' limitations under the License.
  17. '
  18. #End Region
  19. '
  20. ' Version information for an assembly consists of the following four values:
  21. '
  22. ' Major Version
  23. ' Minor Version
  24. ' Build Number
  25. ' Revision
  26. '
  27. ' You can specify all the values or you can default the Revision and Build Numbers
  28. ' by using the '*' as shown below:
  29. <Assembly: System.Reflection.AssemblyVersion("2.0.8.0")>
  30. <Assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.2")>
  31. #If NOT NETCF Then
  32. #If NOT SSCLI Then
  33. <Assembly: System.Reflection.AssemblyFileVersion("2.0.8.0")>
  34. #End If
  35. #End If
  36. '
  37. ' Shared assembly settings
  38. '
  39. <Assembly: System.Reflection.AssemblyCompany("The Apache Software Foundation")>
  40. <Assembly: System.Reflection.AssemblyCopyright("Copyright 2004-2017 The Apache Software Foundation.")>
  41. <Assembly: System.Reflection.AssemblyTrademark("Apache and Apache log4net are trademarks of The Apache Software Foundation")>