Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build and Test

on:
push:
branches: [ "master" ]
pull_request:
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: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
1 change: 1 addition & 0 deletions Legba.Engine/Legba.Engine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>2.0.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
3 changes: 2 additions & 1 deletion Legba.WPF/Legba.WPF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<UserSecretsId>3be61677-fcf9-4588-bc35-5383dcd0d62e</UserSecretsId>
<ApplicationIcon>Images\LegbaIcon.ico</ApplicationIcon>
<AssemblyName>Legba</AssemblyName>
<Version>2.0.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down Expand Up @@ -43,7 +44,7 @@
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Images\LegbaLogo_Transparent.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="Images\MagnifyingGlass.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
Expand Down
4 changes: 2 additions & 2 deletions Legba.WPF/Windows/AboutView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
<StackPanel Grid.Row="0" Grid.Column="0"
Grid.ColumnSpan="2"
Orientation="Horizontal">
<Image Source="pack://application:,,,/Legba.WPF;component/Images/LegbaLogo_Transparent.png"

<Image Source="/Images/LegbaLogo_Transparent.png"
Height="75"
Width="75"
Margin="0,0,10,0"/>
Expand Down
18 changes: 18 additions & 0 deletions Legba.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Legba.WPF", "Legba.WPF\Legb
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Legba.Engine", "Legba.Engine\Legba.Engine.csproj", "{E6E5A159-EB7F-4690-AFC6-E86E928B97A3}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Files", "Solution Files", "{02EA681E-C7D8-13C7-8484-4AC65E1B71E8}"
ProjectSection(SolutionItems) = preProject
CONTRIBUTORS.md = CONTRIBUTORS.md
LICENSE.txt = LICENSE.txt
README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{C2FC1A78-0FAC-46C1-85A5-EB1D42925C59}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{05E357AB-B37A-4182-ADDC-14A1391A8FF6}"
ProjectSection(SolutionItems) = preProject
.github\workflows\ci.yml = .github\workflows\ci.yml
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -25,6 +39,10 @@ Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{C2FC1A78-0FAC-46C1-85A5-EB1D42925C59} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8}
{05E357AB-B37A-4182-ADDC-14A1391A8FF6} = {C2FC1A78-0FAC-46C1-85A5-EB1D42925C59}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {B180EB06-0C0F-47C5-8708-BD88E4C9E7CB}
EndGlobalSection
Expand Down
Loading