Skip to content

Commit

Permalink
First release
Browse files Browse the repository at this point in the history
  • Loading branch information
hookmanuk committed Apr 21, 2022
1 parent 16a5c89 commit 03925c9
Show file tree
Hide file tree
Showing 25 changed files with 1,418 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -348,3 +348,4 @@ MigrationBackup/

# Ionide (cross platform F# VS Code tools) working folder
.ionide/
private.cs
9 changes: 9 additions & 0 deletions App.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<Application x:Class="ChainTime.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:ChainTime"
StartupUri="MainWindow.xaml">
<Application.Resources>

</Application.Resources>
</Application>
17 changes: 17 additions & 0 deletions App.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;

namespace ChainTime
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
}
}
10 changes: 10 additions & 0 deletions AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
using System.Windows;

[assembly: ThemeInfo(
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
//(used if a resource is not found in the page,
// or application resource dictionaries)
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
//(used if a resource is not found in the page,
// app, or any theme specific resource dictionaries)
)]
73 changes: 73 additions & 0 deletions BlockClocksWindows.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<AssemblyName>CardanoBlockClocks</AssemblyName>
<SelfContained>false</SelfContained>
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
<ApplicationIcon>logoicon_kiI_icon.ico</ApplicationIcon>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>

<ItemGroup>
<None Remove="gear-solid.png" />
<None Remove="gear-solid.svg" />
<None Remove="minus-solid.png" />
<None Remove="minus-solid.svg" />
<None Remove="plus-solid.png" />
<None Remove="plus-solid.svg" />
<None Remove="quit.png" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="CefSharp.Wpf.NETCore" Version="100.0.140" />
<PackageReference Include="Extended.Wpf.Toolkit" Version="4.3.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>

<ItemGroup>
<Resource Include="gear-solid.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="minus-solid.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="plus-solid.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="quit.png" />
</ItemGroup>

<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>

<ItemGroup>
<PackageReference Update="chromiumembeddedframework.runtime.win-arm64" Version="100.0.14" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="chromiumembeddedframework.runtime.win-x64" Version="100.0.14" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="chromiumembeddedframework.runtime.win-x86" Version="100.0.14" />
</ItemGroup>

</Project>
25 changes: 25 additions & 0 deletions BlockClocksWindows.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31727.386
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BlockClocksWindows", "BlockClocksWindows.csproj", "{C128C671-D8BC-4F5B-B21C-65AE3C1B47D9}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C128C671-D8BC-4F5B-B21C-65AE3C1B47D9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C128C671-D8BC-4F5B-B21C-65AE3C1B47D9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C128C671-D8BC-4F5B-B21C-65AE3C1B47D9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C128C671-D8BC-4F5B-B21C-65AE3C1B47D9}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {F8761EA5-57FC-4610-B79E-22A66528B1EC}
EndGlobalSection
EndGlobal
Loading

0 comments on commit 03925c9

Please sign in to comment.