Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bbonkr/catchmeifyoucan
It's easy. 😁😁😁 Let click the button within the window.
https://github.com/bbonkr/catchmeifyoucan
dotnet dotnet5 winforms
Last synced: 15 days ago
JSON representation
It's easy. 😁😁😁 Let click the button within the window.
- Host: GitHub
- URL: https://github.com/bbonkr/catchmeifyoucan
- Owner: bbonkr
- Created: 2020-11-26T10:10:09.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-11-26T10:46:28.000Z (about 4 years ago)
- Last Synced: 2024-11-19T13:54:33.469Z (3 months ago)
- Topics: dotnet, dotnet5, winforms
- Language: C#
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Catch me if you can
## Summary
It's easy. 😁😁😁
Let click the button within the window.
![screenshot](./contents/screenshot.png)
## Run
Needs [.NET 5](https://dotnet.microsoft.com/download/dotnet/5.0) installation.
### Use Visual studio
Build and run.
### Use CLI
```bash
$ cd src/CatchMeIfYouCan
$ dotnet build
$ dotnet run
```## Publish
Use self-contained options when needs independent execution file.
e.g.) Publish to Windows x64 target self contained execution file:
```bash
$ cd src/CatchMeIfYouCan
$ dotnet build
$ dotnet publish -c Release --self-contained --runteim win-x64 -o out
```References:
- [.NET Core application publishing overview](https://docs.microsoft.com/ko-kr/dotnet/core/deploying/#publish-framework-dependent)
- [dotnet publish](https://docs.microsoft.com/ko-kr/dotnet/core/tools/dotnet-publish)
- [.NET Core RID Catalog](https://docs.microsoft.com/ko-kr/dotnet/core/rid-catalog)