summaryrefslogtreecommitdiffstats
path: root/aspnetcore-version.js
diff options
context:
space:
mode:
authorChad T <chad@tolkien.id.au>2017-04-25 10:43:58 +1000
committerGitHub <noreply@github.com>2017-04-25 10:43:58 +1000
commit05da6905fac19035a78a7946d1cf0403043c5b22 (patch)
tree603b17f4897eeb8b803f10593b28877420b6e469 /aspnetcore-version.js
parent8213c3425c799ea5b79305cb20ef51adbd5aa97d (diff)
downloadTinyPNG-origin/release.zip
TinyPNG-origin/release.tar.gz
TinyPNG-origin/release.tar.bz2
Merging in for V3 release (#18)origin/release
* fixed errors in the readme * Deleted ncrunch bits. * Add ncrunch to gitignore * appveyor WIP * appveyor wip * appveyor wip * AV has bash?! * appveyor wip * added badge to readme * appveyor wip * appveyor.yml wip * appveyor wip, don't run tests twice * appveyor last time! * test improvements #1 * more test coverage * more test coverage * more testing, resize operations * exception tests * yet more tests * test improvements #1 (#13) * test improvements #1 * more test coverage * more test coverage * more testing, resize operations * exception tests * yet more tests * tests * actually builds * on the round to 100% * fixed final failing test * fixed code which would generate stack overflow exceptions.. woops * Delete build.sh * Update .travis.yml * Update .travis.yml * Update .travis.yml * Dropping OSX CI builds * Update README.md * Version 3 release (#14) * refactored the api * updating readme * internalsvisibleto * make httpclient static * WIP * cleanup * further cleanup * Final update to readme * add test for non success on compress operation * increase test coverage * Remove package.json, unneeded * CSProj migration (#16) * migrating to csproj * Appveyor * appveyor * cleanup csprojs * ditched assembly info * av * av * av * travis * travis * fix AV * fix AV * include resources to output * include resources to output * project json accidentaly made a return * update version * killed off xproj * v3 refactor * test open cover * opencover * opencover * yet more travis work * spell language correctly * can we get mac builds * travis * travis * travis * travis * remove sudo * Use 2017 release image on AV
Diffstat (limited to 'aspnetcore-version.js')
-rw-r--r--aspnetcore-version.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/aspnetcore-version.js b/aspnetcore-version.js
deleted file mode 100644
index d2ea3b4..0000000
--- a/aspnetcore-version.js
+++ /dev/null
@@ -1,18 +0,0 @@
-var jsonfile = require('jsonfile');
-
-var file = './src/tinypng/project.json';
-
-jsonfile.readFile(file, function (err, project) {
- if (err)
- {
- console.error("Couldn't open project.json");
- return;
- }
- project.version = process.env.APPVEYOR_BUILD_VERSION;
- jsonfile.writeFile(file, project, {spaces: 2}, function(err) {
- if (err)
- {
- console.error("We've failed to update the build number");
- }
- });
-}) \ No newline at end of file