Skip to content

Create or change .NET assembly attributes in C# and JScript source code.

License

Notifications You must be signed in to change notification settings

vweevers/assembly-source

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

assembly-source

Create or change .NET assembly attributes in C# and JScript source code.

npm status node Travis build status

Usage

const Assembly = require('assembly-source')
const fs = require('fs')

// Construct from source code
const assembly = Assembly(fs.readFileSync('./AssemblyInfo.cs'))

// Read attributes (strings, booleans and numbers)
console.log(assembly.get('AssemblyVersion'))

// Modify and add attributes
assembly.set('AssemblyVersion', '1.2.3')
assembly.set('ComVisible', true)

// Then save
fs.writeFileSync('./AssemblyInfo.cs', assembly.toSource())

Or create metadata from scratch for JScript:

const assembly = Assembly({ language: 'jscript' })

assembly.set('AssemblyFileVersion', '1.2.3.4')
assembly.set('AssemblyInformationalVersion', '1.2.3')

const js = assembly.toSource({ preamble: true })

Install

With npm do:

npm install assembly-source

License

MIT © Vincent Weevers

About

Create or change .NET assembly attributes in C# and JScript source code.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published