Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
emako committed Aug 13, 2024
0 parents commit a146cf5
Show file tree
Hide file tree
Showing 36 changed files with 3,230 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Bug report
description: Create a report to help us improve
title: "Bug title"
labels: [bug]
body:
- type: textarea
validations:
required: true
attributes:
label: Describe the bug
description: A clear and concise description of what the bug is
- type: textarea
validations:
required: true
attributes:
label: To Reproduce
description: Steps to reproduce the behavior
- type: textarea
validations:
required: true
attributes:
label: Expected behavior
description: A clear and concise description of what you expected to happen
- type: textarea
attributes:
label: Screenshots
description: If applicable, add screenshots to help explain your problem
- type: textarea
validations:
required: true
attributes:
label: OS version
description: Which OS versions did you see the issue on?
- type: textarea
validations:
required: true
attributes:
label: .NET version
description: Which .NET versions did you see the issue on?
- type: textarea
validations:
required: true
attributes:
label: WPF-UI NuGet version
description: Which WPF-UI NuGet versions did you see the issue on?
- type: textarea
attributes:
label: Additional context
description: Add any other context about the problem here
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
blank_issues_enabled: false
contact_links:
- name: Documentation
url: https://wpfui.lepo.co/documentation/
about: Find out how WPF UI works.
- name: Tutorial
url: https://wpfui.lepo.co/documentation/tutorial
about: Having trouble with the basics? Check out the tutorial!
- name: lepo.co contact
url: https://lepo.co/contact
about: Do you want to establish business contact? Let us know.
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Feature request
description: Suggest an idea for the wpfui
title: "Feature request title"
labels: [enhancement]
body:
- type: textarea
validations:
required: true
attributes:
label: Is your feature request related to a problem? Please describe
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
- type: textarea
validations:
required: true
attributes:
label: Describe the solution you'd like
description: A clear and concise description of what you want to happen
- type: textarea
attributes:
label: Describe alternatives you've considered
description: A clear and concise description of any alternative solutions or features you've considered
- type: textarea
attributes:
label: Additional context
description: Add any other context or screenshots about the feature request here
39 changes: 39 additions & 0 deletions .github/workflows/library.nuget.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: wpfui.violeta

on:
release:
types: [created]
push:
branches:
- master

jobs:
build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3

- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 8.0.x

- name: Setup Windows SDK
uses: GuillaumeFalourd/[email protected]

- name: Install dependencies
run: dotnet restore

- name: Build
run: dotnet build --configuration Release --no-restore

- name: Pack
run: dotnet pack src\Wpf.Ui.Violeta\Wpf.Ui.Violeta.csproj -c Release --no-build -o out

- name: Push NuGet package
# run: dotnet nuget push "out\*.nupkg" -k ${{secrets.NUGET_AUTH_TOKEN}} --source https://api.nuget.org/v3/index.json
uses: actions/upload-artifact@v3
with:
name: nuget-packages
path: out/*.nupkg
Loading

0 comments on commit a146cf5

Please sign in to comment.