An open API service indexing awesome lists of open source software.

https://github.com/vweevers/win-dummy-exe

Generate a dummy Windows exe with .NET.
https://github.com/vweevers/win-dummy-exe

dotnet exe jscript nodejs testing-tools windows

Last synced: 7 months ago
JSON representation

Generate a dummy Windows exe with .NET.

Awesome Lists containing this project

README

          

# win-dummy-exe

**Generate a dummy Windows executable with .NET. Meant for testing.**

[![npm status](http://img.shields.io/npm/v/win-dummy-exe.svg?style=flat-square)](https://www.npmjs.org/package/win-dummy-exe)
[![node](https://img.shields.io/node/v/win-dummy-exe.svg?style=flat-square)](https://www.npmjs.org/package/win-dummy-exe)
[![AppVeyor build status](https://img.shields.io/appveyor/ci/vweevers/win-dummy-exe.svg?style=flat-square&label=appveyor)](https://ci.appveyor.com/project/vweevers/win-dummy-exe)
[![Dependency status](https://img.shields.io/david/vweevers/win-dummy-exe.svg?style=flat-square)](https://david-dm.org/vweevers/win-dummy-exe)
[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg?style=flat-square)](https://standardjs.com)

## usage

```js
const dummy = require('win-dummy-exe')

const metadata = {
assemblyFileVersion: '1.0.0',
assemblyInformationalVersion: '1.0.0.1',
assemblyCopyright: 'me me me'
}

dummy(metadata, function (err, exe) {
if (err) throw err

// exe is an absolute path to a dummy.exe in a temporary directory
})
```

## install

With [npm](https://npmjs.org) do:

```
npm install win-dummy-exe
```

## license

[MIT](http://opensource.org/licenses/MIT) © Vincent Weevers