Skip to content

Commit 8a5c9db

Browse files
committed
Added publishing.
1 parent 0cb9639 commit 8a5c9db

File tree

6 files changed

+31
-8
lines changed

6 files changed

+31
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
[Xx]64/
1919
[Xx]86/
2020
[Bb]uild/
21+
[Ll]ib/
2122
bld/
2223
[Bb]in/
2324
[Oo]bj/

LargeList/LargeList.nuspec

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
<?xml version="1.0"?>
1+
<?xml version="1.0"?>
22
<package >
33
<metadata>
4-
<id>CSharp.LargeList</id>
5-
<version>1.0.0.325</version>
4+
<id>dlebansais.LargeList.LargeList</id>
5+
<version>1.0.0.358</version>
66
<title>LargeList</title>
77
<authors>David Le Bansais</authors>
88
<owners>David Le Bansais</owners>
99
<projectUrl>https://github.com/dlebansais/LargeList</projectUrl>
1010
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1111
<description>LargeList is an implementation of Collection&lt;&gt; and List&lt;&gt; that can hold a number of elements limited only by the available memory, tested up to 8 billions.</description>
12-
<releaseNotes>This is the first release.</releaseNotes>
13-
<copyright>Copyright 2017 © David Le Bansais</copyright>
12+
<releaseNotes>Some minor bug fixes.</releaseNotes>
13+
<copyright>Copyright 2017 ? David Le Bansais</copyright>
1414
<tags>partition-scheme lists 64-bit</tags>
1515
</metadata>
16-
</package>
16+
</package>

LargeList/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
// The following GUID is for the ID of the typelib if this project is exposed to COM
2929
[assembly: Guid("49708123-ffcc-4fda-9d6a-53d7d07fac52")]
3030

31-
[assembly: AssemblyVersion("1.0.0.336")]
32-
[assembly: AssemblyFileVersion("1.0.0.348")]
31+
[assembly: AssemblyVersion("1.0.0.346")]
32+
[assembly: AssemblyFileVersion("1.0.0.358")]

Nuget/CSharp.LargeList.zip

39.1 KB
Binary file not shown.

coverity_scan.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ C:\Applications\7-Zip\7z a cov-int cov-int -tzip
77

88
rem curl --form token=40XkA-tCeIYeAWjOfzn0Xw --form email=dlebansais@gmail.com --form file=@/Projects/LargeList/cov-int.zip --form version="1.0.0.343" --form description="Test" "https://scan.coverity.com/builds?project=dlebansais/LargeList"
99
curl --form token=40XkA-tCeIYeAWjOfzn0Xw --form email=dlebansais@gmail.com --form file=@/Projects/LargeList/cov-int.zip "https://scan.coverity.com/builds?project=dlebansais/LargeList"
10+
11+
del cov-int.zip

publish.bat

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
if not exist .\Nuget\lib md .\Nuget\lib
2+
if not exist .\Nuget\lib\net452 md .\Nuget\lib\net452
3+
copy .\LargeList\bin\x64\Release\LargeList.dll .\Nuget\lib\net452
4+
copy .\LargeList\bin\x64\Release\LargeList.xml .\Nuget\lib\net452
5+
copy .\LargeList\LargeList.nuspec .\Nuget\CSharp.LargeList.nuspec
6+
7+
cd Nuget
8+
C:\Applications\7-Zip\7z u CSharp.LargeList.zip lib\net452\LargeList.dll
9+
C:\Applications\7-Zip\7z u CSharp.LargeList.zip lib\net452\LargeList.xml
10+
C:\Applications\7-Zip\7z u CSharp.LargeList.zip CSharp.LargeList.nuspec
11+
copy CSharp.LargeList.zip CSharp.LargeList.1.0.0.358.nupkg
12+
rd /S /Q lib
13+
del CSharp.LargeList.nuspec
14+
cd ..
15+
16+
:pub
17+
18+
..\Certification\publish .\Nuget\CSharp.LargeList.1.0.0.358.nupkg
19+
20+
del .\Nuget\CSharp.LargeList.1.0.0.358.nupkg

0 commit comments

Comments
 (0)