Skip to content

Commit

Permalink
Update project structure for V3
Browse files Browse the repository at this point in the history
  • Loading branch information
shibayan committed Sep 18, 2023
1 parent a641a38 commit 86c674d
Show file tree
Hide file tree
Showing 86 changed files with 42 additions and 3,461 deletions.
11 changes: 0 additions & 11 deletions .github/dependabot.yml

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/build-v3.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build V3

on:
push:
branches: [ v3 ]
pull_request:
branches: [ v3 ]

env:
DOTNET_VERSION: 7.0.x

jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true

- name: Use .NET ${{ env.DOTNET_VERSION }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

- name: Build application
run: dotnet build .\WinQuickLook\WinQuickLook.csproj /p:Platform=x64 /p:Configuration=Release /verbosity:minimal

- name: Lint C# code
run: dotnet format whitespace .\WinQuickLook\WinQuickLook.csproj --verify-no-changes --verbosity detailed --no-restore
36 changes: 0 additions & 36 deletions .github/workflows/build.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
name: Publish
name: Publish V3

on:
push:
tags: [ v* ]

env:
DOTNET_VERSION: 6.0.x
DOTNET_VERSION: 7.0.x
BUNDLE_PLATFORMS: x64|arm64

jobs:
publish:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true

- name: Use .NET ${{ env.DOTNET_VERSION }}
uses: actions/setup-dotnet@v2
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

- name: Use MSBuild
uses: microsoft/setup-msbuild@v1.1
uses: microsoft/setup-msbuild@v1

- name: Setup Version
id: setup_version
Expand Down
61 changes: 0 additions & 61 deletions WinQuickLook-V4.sln

This file was deleted.

29 changes: 0 additions & 29 deletions WinQuickLook.App/App.xaml

This file was deleted.

92 changes: 0 additions & 92 deletions WinQuickLook.App/App.xaml.cs

This file was deleted.

10 changes: 0 additions & 10 deletions WinQuickLook.App/AppParameters.cs

This file was deleted.

10 changes: 0 additions & 10 deletions WinQuickLook.App/AssemblyInfo.cs

This file was deleted.

14 changes: 0 additions & 14 deletions WinQuickLook.App/BindableBase.cs

This file was deleted.

58 changes: 0 additions & 58 deletions WinQuickLook.App/DelegateCommand.cs

This file was deleted.

Binary file removed WinQuickLook.App/Icon.ico
Binary file not shown.
Loading

0 comments on commit 86c674d

Please sign in to comment.