Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/savecoders/votequeen
Desktop App C# dotnet implement Windows Forms | Sql Server
https://github.com/savecoders/votequeen
dotnet-core sqlserver wimdows winforms winforms-application
Last synced: 3 months ago
JSON representation
Desktop App C# dotnet implement Windows Forms | Sql Server
- Host: GitHub
- URL: https://github.com/savecoders/votequeen
- Owner: Savecoders
- Created: 2024-06-02T16:07:44.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-08-09T17:14:57.000Z (5 months ago)
- Last Synced: 2024-10-14T04:41:58.207Z (3 months ago)
- Topics: dotnet-core, sqlserver, wimdows, winforms, winforms-application
- Language: C#
- Homepage:
- Size: 9.72 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Init Project
## Share Files And Videos
- [Aprender Git y github](https://www.youtube.com/watch?v=niPExbK8lSw)
- [Github Desktop](https://www.youtube.com/watch?v=TuOQBfhp-r0&t=821s)
- [Aprender DotNet Windows Forms - Ingles](https://www.youtube.com/watch?v=0zLZQesgV5o)
- [Aprender DotNet Windows Forms - Espaniol](https://www.youtube.com/watch?v=JbqBAkpj7T8&t=982s)
- [Aprender DotNet Windows Forms - Espaniol - Entity Framework](https://www.youtube.com/watch?v=JAfg2j8qrsg)
- [Casos de Uso - DrawIO](https://drive.google.com/file/d/1DIQ90IavZdw_TYtvfsRTGQMXg_Ksz_Qs/view?usp=sharing)## Specification
In Powersheel execute the command:
```sh
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
```please execute next commands in powersheel
## Install Dependencies
- [Download Visual Studio 2022](https://visualstudio.microsoft.com/es/downloads/)
- [Download Sql Server](https://www.microsoft.com/es-es/sql-server/sql-server-downloads)
- [Download Git](https://git-scm.com/download/win)
- [Download .Net 8 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/8.0)## Developer Folder
```sh
cd C:\users\$Env:Username\Documents\
mkdir Developer
cd Developer
```## clone repository
```sh
git clone https://github.com/Savecoders/VoteQueen.git
cd VoteQueen
```## Config git user
```sh
git config --global user.name "username"
git config --global user.email "[email protected]"
```please using your username and email from github
> [!NOTE]
> It's the most important step from execute this project## Run Project in normal mode
```sh
dotnet run
```## Push and pull changes
```sh
git pull --set-upstream origin main
git push --set-upstream origin main
```