Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin D'Andrea committed May 9, 2019
0 parents commit 4e42ed1
Show file tree
Hide file tree
Showing 7 changed files with 1,536 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
bin/
log/
*.tmp
~$*.docx
*~
RESOURCES.resources
RESOURCES.txt
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# C# Windows Shortcuts

This is a small project to create/read/modify Windows Shortcuts

## Getting Started

Run *make.bat* to compile *src/Shortcuts.cs* to dll File.
OR Include this *Shortcuts.cs* file in your Project.
The Shortcuts.cs is in namespace *System.IO*.

### Prerequisites

* Microsoft Windows Vista or higher
* Microsoft .NET Framework 4.0 or higher

## Running the tests

Run the make.bat and the Test will run.

### Break down into end to end tests

Create/Read/Modify in *C:\TEMP* a *test.lnk*.

## Built With

* C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe

## Authors

* **Robin D'Andrea** - *Robinterra* - [PurpleBooth](https://github.com/Robinterra)
3 changes: 3 additions & 0 deletions make.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
if not exist "bin\" mkdir bin
if not exist "log\" mkdir log
work.bat --make --target:library "--out:bin\Shortcuts.dll" "--test:Testing.ProgramTest" "--testpath:test\stern.cs" "--log:log\build_log.txt" "--src:src\" %*
Loading

0 comments on commit 4e42ed1

Please sign in to comment.