Skip to content

Commit

Permalink
modernize and prepare for opening source
Browse files Browse the repository at this point in the history
  • Loading branch information
lostmsu committed Oct 5, 2020
1 parent ae5c503 commit e1b2297
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 9 deletions.
8 changes: 1 addition & 7 deletions AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
using System.Reflection;
using System.Runtime.InteropServices;

[assembly: AssemblyVersion("1.3.*")]
[assembly: AssemblyCompany("Lost Tech LLC")]
[assembly: AssemblyProduct("Stack")]
[assembly: AssemblyCopyright("Copyright © Lost Tech LLC 2020")]
using System.Runtime.InteropServices;

[assembly: ComVisible(false)]
25 changes: 25 additions & 0 deletions Stack.WindowManagement.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.30516.212
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WindowManagement", "WindowManagement.csproj", "{C2C792CB-6BE3-4198-A753-504CF05295A2}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C2C792CB-6BE3-4198-A753-504CF05295A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C2C792CB-6BE3-4198-A753-504CF05295A2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C2C792CB-6BE3-4198-A753-504CF05295A2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C2C792CB-6BE3-4198-A753-504CF05295A2}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {EDD64D82-3C92-4E14-B68B-AA4658824FD4}
EndGlobalSection
EndGlobal
15 changes: 13 additions & 2 deletions WindowManagement.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,26 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>LostTech.Stack.WindowManagement</AssemblyName>
<VersionPrefix>2.0.0</VersionPrefix>
<RootNamespace>LostTech.Stack.WindowManagement</RootNamespace>
<LangVersion>8.0</LangVersion>
<Nullable>enable</Nullable>
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
<Deterministic>False</Deterministic>

<Product>Stack</Product>
<Company>Lost Tech LLC</Company>
<Copyright>© Lost Tech LLC 2020</Copyright>

<!-- The following is recommended for public projects -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<DebugSymbols>true</DebugSymbols>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Drawing.Primitives" Version="4.3.0" />
<!-- The following is recommended for public projects -->
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>

</Project>

0 comments on commit e1b2297

Please sign in to comment.