Skip to content

Commit 257f37f

Browse files
committed
Move SharpGen.Runtime.COM into its own repository.
1 parent 09485fb commit 257f37f

File tree

7 files changed

+158
-1
lines changed

7 files changed

+158
-1
lines changed

.editorconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
; This file is for unifying the coding style for different editors and IDEs.
2+
; More information at http://EditorConfig.org
3+
4+
root = true
5+
6+
[*]
7+
end_of_line = CRLF
8+
9+
[*.cs]
10+
indent_style = space
11+
indent_size = 4

.gitignore

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
2+
#ignore thumbnails created by windows
3+
Thumbs.db
4+
#Ignore files build by Visual Studio
5+
*.obj
6+
*.exe
7+
*.pdb
8+
*.user
9+
*.aps
10+
*.pch
11+
*.vspscc
12+
*_i.c
13+
*_p.c
14+
*.ncb
15+
*.suo
16+
*.tlb
17+
*.tlh
18+
*.bak
19+
*.cache
20+
*.ilk
21+
*.log
22+
*.orig
23+
[Bb]in
24+
[Dd]ebug*/
25+
*.lib
26+
*.sbr
27+
*.nogit
28+
*.nupkg
29+
*.sdf
30+
*.opensdf
31+
*.suo
32+
*.dotCover
33+
sdk-include/
34+
vc-include/
35+
obj/
36+
ipch*/
37+
Demo/
38+
AppPackages/
39+
[Rr]elease*/
40+
_ReSharper*/
41+
[Tt]est[Rr]esult*
42+
Generated*/
43+
packages/
44+
Temp*/
45+
.vs/
46+
#ignore build log file
47+
BuildErrors.log
48+
#ignore certification test results
49+
Source/CertificationTests/Results/*
50+
*.tlog
51+
52+
# Documentation
53+
_build/
54+
55+
.vscode/*

Directory.build.props

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<Project>
2+
<PropertyGroup>
3+
<VersionPrefix Condition="'$(APPVEYOR_REPO_TAG_NAME)' != ''">$(APPVEYOR_REPO_TAG_NAME)</VersionPrefix>
4+
<VersionPrefix Condition="'$(VersionPrefix)' == ''">1.0.1</VersionPrefix>
5+
<VersionSuffix Condition="'$(CI)' == ''">local</VersionSuffix>
6+
<VersionSuffix Condition="'$(CI)' != '' AND '$(APPVEYOR_REPO_TAG_NAME)' == ''">ci$(APPVEYOR_BUILD_NUMBER)</VersionSuffix>
7+
<Authors>jkoritzinsky</Authors>
8+
<Copyright>(c) 2018 Jeremy Koritzinsky</Copyright>
9+
<PackageLicenseUrl>https://github.com/jkoritzinsky/SharpGen.Runtime.COM/blob/master/LICENSE.txt</PackageLicenseUrl>
10+
<PackageProjectUrl>https://github.com/jkoritzinsky/SharpGen.Runtime.COM</PackageProjectUrl>
11+
<Tags>SharpGen;COM</Tags>
12+
<RepositoryUrl>https://github.com/jkoritzinsky/SharpGen.Runtime.COM</RepositoryUrl>
13+
<LangVersion>7.2</LangVersion>
14+
</PropertyGroup>
15+
</Project>

LICENSE.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2010-2017 Alexandre Mutel, 2017 Jeremy Koritzinsky
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

SharpGen.Runtime.COM.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,13 @@
1010
<ItemGroup>
1111
<SharpGenMapping Include="Mapping.xml" />
1212
<PackageReference Include="System.Memory" Version="4.4.0-preview2-25405-01" />
13-
<PackageReference Include="SharpGen.Doc.Msdn.Tasks" Version="$(LocalPackageVersion)">
13+
<PackageReference Include="SharpGen.Doc.Msdn.Tasks" Version="1.0.0">
1414
<PrivateAssets>all</PrivateAssets>
1515
</PackageReference>
16+
<PackageReference Include="SharpGenTools.Sdk" Version="1.0.0">
17+
<PrivateAssets>all</PrivateAssets>
18+
</PackageReference>
19+
<PackageReference Include="SharpGen.Runtime" Version="1.0.0" />
1620
</ItemGroup>
1721

1822
</Project>

SharpGen.Runtime.COM.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.27130.2036
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SharpGen.Runtime.COM", "SharpGen.Runtime.COM.csproj", "{1E2AA0D7-49F8-4E21-966D-60899298214C}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{1E2AA0D7-49F8-4E21-966D-60899298214C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{1E2AA0D7-49F8-4E21-966D-60899298214C}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{1E2AA0D7-49F8-4E21-966D-60899298214C}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{1E2AA0D7-49F8-4E21-966D-60899298214C}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {BCED1C14-0624-4D10-8DF1-E5AC0F4A689C}
24+
EndGlobalSection
25+
EndGlobal

appveyor.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
version: 1.0.{build}
2+
image: Visual Studio 2017
3+
environment:
4+
CLI_VERSION: 2.0.0
5+
MYGET_API_KEY:
6+
secure: dtTGYQHgEupz5SmTDFkvDW1uEZH7mEM8PD948uzOZY/XCl965mhorbEl2e+6U8pO
7+
NUGET_API_KEY:
8+
secure: 4WMsxFFj1s1R+uO8E96HqveIJM77lMWjcWhUnfpXslepnAMlPVigu/SPKnd4aCQn
9+
10+
artifacts:
11+
- path: '**\*.nupkg'
12+
13+
deploy:
14+
- provider: NuGet
15+
api_key:
16+
secure: YllGn/UU5leb3rTBzsuJ/fBlD76dAnZ+V0OGI+AnptcdAUe5i9LqOsaz2VaL0kxo
17+
on:
18+
branch: master
19+
APPVEYOR_REPO_TAG: true
20+
- provider: NuGet
21+
server: https://www.myget.org/F/sharpgentools/api/v2/package
22+
api_key:
23+
secure: dtTGYQHgEupz5SmTDFkvDW1uEZH7mEM8PD948uzOZY/XCl965mhorbEl2e+6U8pO
24+
on:
25+
branch: master
26+
APPVEYOR_REPO_TAG: false

0 commit comments

Comments
 (0)