Skip to content

Commit

Permalink
set application icon and add readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Kaiser committed Mar 28, 2023
1 parent 0d0bd10 commit 5e86351
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
11 changes: 11 additions & 0 deletions IFCGeoRefCheckerGUI/IFCGeoRefCheckerGUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,18 @@
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>images\DD-BIM-ICON.ico</ApplicationIcon>
</PropertyGroup>

<ItemGroup>
<None Remove="images\DD-BIM-ICON.ico" />
<None Remove="images\DD-BIM-LOGO.png" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="images\DD-BIM-ICON.ico" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Serilog.Sinks.RichTextBox.Wpf" Version="1.1.0" />
<PackageReference Include="Xbim.Common" Version="5.1.341" />
Expand All @@ -29,6 +34,12 @@
</Resource>
</ItemGroup>

<ItemGroup>
<None Update="Readme.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>

<Import Project="..\IFCGeorefShared\IFCGeorefShared.projitems" Label="Shared" />

</Project>
4 changes: 2 additions & 2 deletions IFCGeoRefCheckerGUI/MainWindowAllInOne.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:IFCGeoRefCheckerGUI"
xmlns:vm="clr-namespace:IFCGeoRefCheckerGUI.ViewModels" x:Class="IFCGeoRefCheckerGUI.MainWindowAllInOne"
mc:Ignorable="d" Icon="/IFCGeorefCheckerGUI;component/images/DD-BIM-ICON.ico"
mc:Ignorable="d"
Title="IfcGeoRefChecker" Height="750" Width="650" MinWidth="650" MinHeight="750"
>
<Window.DataContext>
Expand Down Expand Up @@ -145,7 +145,7 @@


<Button x:Name="CheckFileBtn" Grid.Row="3"
Content="Check selected file" Margin="10,10,10,10"
Content="Check Selected File" Margin="10,10,10,10"
Padding="1,5,1,5" Command="{Binding checkViewModel.CheckIFC}" CommandParameter="{Binding filePanelViewModel.FilePaths}"
/>

Expand Down
6 changes: 6 additions & 0 deletions IFCGeoRefCheckerGUI/Readme.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
For Running the IFCGeoRefChecker application it is required to have a Version of
Windows Desktop Runtime Version 6.0 or greater installed on your Computer

The runtime can be downloaded here:
https://dotnet.microsoft.com/en-us/download/dotnet/6.0

0 comments on commit 5e86351

Please sign in to comment.