Skip to content
This repository has been archived by the owner on Dec 21, 2024. It is now read-only.

Csharp gui #12

Merged
merged 13 commits into from
Nov 17, 2023
41 changes: 41 additions & 0 deletions .github/workflows/dotnet-desktop-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: .NET Core Desktop .EXE (CI)

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:

build:

strategy:
matrix:
targetplatform: [x86, x64]

runs-on: windows-latest

env:
Project_File: FAFB-PowerShell-Tool\FAFB-PowerShell-Tool.csproj

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'

- name: Build
run: dotnet build $env:Project_File -c Release -f net8.0-windows -r win-${{ matrix.targetplatform }} --self-contained

- name: Publish Artifact
run: dotnet publish -c Release -f net8.0-windows -r win-${{ matrix.targetplatform }} -o ./FAFB_PowerShell_Tool_${{ matrix.targetplatform }} --self-contained -p:PublishSingleFile=true

- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: FAFB_PowerShell_Tool_${{ matrix.targetplatform }}
path: FAFB_PowerShell_Tool_${{ matrix.targetplatform }}
115 changes: 0 additions & 115 deletions .github/workflows/dotnet-desktop.yml

This file was deleted.

4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -475,3 +475,7 @@ $RECYCLE.BIN/

# Windows shortcuts
*.lnk

.vscode/launch.json

.vscode/tasks.json
38 changes: 31 additions & 7 deletions FAFB-PowerShell-Tool.sln
Original file line number Diff line number Diff line change
@@ -1,25 +1,49 @@


Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.8.34309.116
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FAFB-PowerShell-Tool", "FAFB-PowerShell-Tool\FAFB-PowerShell-Tool.csproj", "{72C5F986-BC18-47B9-9EE1-A5E61A7A5A68}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FAFB-PowerShell-Tool", "FAFB-PowerShell-Tool\FAFB-PowerShell-Tool.csproj", "{C6E51308-E9E0-4738-9D5A-49841912633B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|ARM = Debug|ARM
Debug|ARM64 = Debug|ARM64
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|ARM = Release|ARM
Release|ARM64 = Release|ARM64
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{72C5F986-BC18-47B9-9EE1-A5E61A7A5A68}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{72C5F986-BC18-47B9-9EE1-A5E61A7A5A68}.Debug|Any CPU.Build.0 = Debug|Any CPU
{72C5F986-BC18-47B9-9EE1-A5E61A7A5A68}.Release|Any CPU.ActiveCfg = Release|Any CPU
{72C5F986-BC18-47B9-9EE1-A5E61A7A5A68}.Release|Any CPU.Build.0 = Release|Any CPU
{C6E51308-E9E0-4738-9D5A-49841912633B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C6E51308-E9E0-4738-9D5A-49841912633B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C6E51308-E9E0-4738-9D5A-49841912633B}.Debug|ARM.ActiveCfg = Debug|Any CPU
{C6E51308-E9E0-4738-9D5A-49841912633B}.Debug|ARM.Build.0 = Debug|Any CPU
{C6E51308-E9E0-4738-9D5A-49841912633B}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{C6E51308-E9E0-4738-9D5A-49841912633B}.Debug|ARM64.Build.0 = Debug|Any CPU
{C6E51308-E9E0-4738-9D5A-49841912633B}.Debug|x64.ActiveCfg = Debug|Any CPU
{C6E51308-E9E0-4738-9D5A-49841912633B}.Debug|x64.Build.0 = Debug|Any CPU
{C6E51308-E9E0-4738-9D5A-49841912633B}.Debug|x86.ActiveCfg = Debug|Any CPU
{C6E51308-E9E0-4738-9D5A-49841912633B}.Debug|x86.Build.0 = Debug|Any CPU
{C6E51308-E9E0-4738-9D5A-49841912633B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C6E51308-E9E0-4738-9D5A-49841912633B}.Release|Any CPU.Build.0 = Release|Any CPU
{C6E51308-E9E0-4738-9D5A-49841912633B}.Release|ARM.ActiveCfg = Release|Any CPU
{C6E51308-E9E0-4738-9D5A-49841912633B}.Release|ARM.Build.0 = Release|Any CPU
{C6E51308-E9E0-4738-9D5A-49841912633B}.Release|ARM64.ActiveCfg = Release|Any CPU
{C6E51308-E9E0-4738-9D5A-49841912633B}.Release|ARM64.Build.0 = Release|Any CPU
{C6E51308-E9E0-4738-9D5A-49841912633B}.Release|x64.ActiveCfg = Release|Any CPU
{C6E51308-E9E0-4738-9D5A-49841912633B}.Release|x64.Build.0 = Release|Any CPU
{C6E51308-E9E0-4738-9D5A-49841912633B}.Release|x86.ActiveCfg = Release|Any CPU
{C6E51308-E9E0-4738-9D5A-49841912633B}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {FB3EA193-E8C1-4969-A089-D9EDFED20037}
SolutionGuid = {D943E3B5-BE10-4DFA-9E77-ABE6AAFFD304}
EndGlobalSection
EndGlobal
25 changes: 1 addition & 24 deletions FAFB-PowerShell-Tool/FAFB-PowerShell-Tool.csproj
Original file line number Diff line number Diff line change
@@ -1,33 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<RootNamespace>FAFB_PowerShell_Tool</RootNamespace>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
<EnforceCodeStyleInBuild>False</EnforceCodeStyleInBuild>
<PackageProjectUrl></PackageProjectUrl>
<RepositoryUrl>https://github.com/StrangeRanger/FAFB-PowerShell-Tool</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<SignAssembly>True</SignAssembly>
</PropertyGroup>

<ItemGroup>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>

<ItemGroup>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>

</Project>
</Project>
26 changes: 0 additions & 26 deletions FAFB-PowerShell-Tool/Properties/Settings.Designer.cs

This file was deleted.

6 changes: 0 additions & 6 deletions FAFB-PowerShell-Tool/Properties/Settings.settings

This file was deleted.

Loading