Skip to content

Commit a89f2c2

Browse files
committed
Support for loading in a 'libs' sub-folder.
1 parent 909f3f9 commit a89f2c2

File tree

24 files changed

+2975
-269
lines changed

24 files changed

+2975
-269
lines changed

Source/NetStandard/V8.Net/V8.Net-Standard/V8.Net-Standard.csproj

Lines changed: 0 additions & 19 deletions
This file was deleted.

Source/PushPackage.cmd

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
@echo off
2+
3+
echo Current working directory is: %CD%
4+
echo.
5+
6+
if not exist "bin\netstandard\Release\" echo The path "bin\netstandard\Release\" does not exist from the current working directory.&&goto :eof
7+
8+
cd bin\netstandard\Release\
9+
if not %errorlevel%==0 echo Failed to change to path "bin\netstandard\Release\".&&goto :eof
10+
11+
:startover
12+
echo.
13+
echo This command file will attempt to push a new version of V8.Net.
14+
if not "%key%"=="" echo Current key: %key% (press enter to use this one again)
15+
set /P key=Please enter the Nuget API key (enter 'exit' to quit):
16+
if "%key%"=="exit" goto :eof
17+
echo.
18+
echo These are the packages in the release folder ...
19+
echo.
20+
dir *.nupkg /B
21+
echo.
22+
set /P version=Please enter the verion of the one to publish (example: 1.0.0):
23+
echo.
24+
25+
if "%key%"=="" echo You did not enter a key.&&goto :eof
26+
27+
set filename=V8.Net.%version%.nupkg
28+
29+
if not exist "%filename%" echo There is no package by the filename '%filename%'!&&pause&&goto startover
30+
31+
nuget push %filename% oy2dgb333j35kjjybt4a4yzxo7hjyloera4anxn4ivcvle -Source https://api.nuget.org/v3/index.json
32+
echo.
33+
echo Done.
34+
pause

Source/V8.NET-ProxyInterface/V8.Net-ProxyInterface-Standard.csproj

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,9 @@
2626
</PropertyGroup>
2727

2828
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
29-
<DocumentationFile />
3029
</PropertyGroup>
3130

3231
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
33-
<DocumentationFile />
3432
</PropertyGroup>
3533

3634
<ItemGroup>
@@ -56,11 +54,6 @@
5654
<None Remove="GeneratedExterns\Generate32BitExterns.tt~" />
5755
</ItemGroup>
5856

59-
<ItemGroup>
60-
<ProjectReference Include="..\V8.Net-SharedTypes\V8.Net-SharedTypes-Standard.csproj" />
61-
<ProjectReference Include="..\V8.Net.Loader\V8.Net.Loader-Standard.csproj" />
62-
</ItemGroup>
63-
6457
<ItemGroup>
6558
<None Update="GeneratedExterns\Generate32BitExterns.log">
6659
<DesignTime>True</DesignTime>

Source/V8.NET-ProxyInterface/V8.Net-ProxyInterface.csproj

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -128,13 +128,6 @@
128128
<Compile Include="Properties\AssemblyInfo.cs" />
129129
<Compile Include="ProxyLoader.cs" />
130130
</ItemGroup>
131-
<ItemGroup>
132-
<ProjectReference Include="..\V8.Net-SharedTypes\V8.Net-SharedTypes.csproj">
133-
<Project>{ef90724b-3893-4acf-bfee-88532485b11a}</Project>
134-
<Name>V8.Net-SharedTypes</Name>
135-
<Private>False</Private>
136-
</ProjectReference>
137-
</ItemGroup>
138131
<ItemGroup>
139132
<None Include="GeneratedExterns\Generate32BitExterns.log" />
140133
<None Include="GeneratedExterns\Generate32BitExterns1.log">

Source/V8.Net-SharedTypes/V8.Net-SharedTypes-Standard.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
</PropertyGroup>
3131

3232
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
33-
<DocumentationFile />
3433
</PropertyGroup>
3534

3635
<ItemGroup>

Source/V8.Net/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
3535
[assembly: AssemblyVersion("1.5.2019.3")]
36-
[assembly: AssemblyFileVersion("1.5.44.14")]
36+
[assembly: AssemblyFileVersion("1.5.45.7")]

0 commit comments

Comments
 (0)