Skip to content
This repository was archived by the owner on Nov 1, 2018. It is now read-only.

Commit 397ab72

Browse files
committed
Merge branch 'release' into dev
2 parents ba3d5d6 + 00eb97b commit 397ab72

File tree

7 files changed

+14
-15
lines changed

7 files changed

+14
-15
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/.vs/
88
/artifacts/
99
/packages/
10-
/src/Microsoft.Data.Sqlite/build/uap10.0/win10-*/
10+
/src/Microsoft.Data.Sqlite/build/netcore50/win10-*/
1111
/src/Microsoft.Data.Sqlite/runtimes/
1212
bin/
1313
obj/

makefile.shade

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ var sqliteDllPath='src/Microsoft.Data.Sqlite/runtimes/win7-x86/native/sqlite3.dl
2323
"https://www.sqlite.org/2015/sqlite-uap-3090000.vsix",
2424
Tuple.Create(
2525
"Redist/Retail/x86/sqlite3.dll",
26-
"src/Microsoft.Data.Sqlite/build/uap10.0/win10-x86/native/sqlite3.dll"),
26+
"src/Microsoft.Data.Sqlite/build/netcore50/win10-x86/native/sqlite3.dll"),
2727
Tuple.Create(
2828
"Redist/Retail/x64/sqlite3.dll",
29-
"src/Microsoft.Data.Sqlite/build/uap10.0/win10-x64/native/sqlite3.dll"),
29+
"src/Microsoft.Data.Sqlite/build/netcore50/win10-x64/native/sqlite3.dll"),
3030
Tuple.Create(
3131
"Redist/Retail/ARM/sqlite3.dll",
32-
"src/Microsoft.Data.Sqlite/build/uap10.0/win10-arm/native/sqlite3.dll"));
32+
"src/Microsoft.Data.Sqlite/build/netcore50/win10-arm/native/sqlite3.dll"));
3333
}
3434

3535
functions

src/Microsoft.Data.Sqlite/project.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"System.Threading.Tasks": "4.0.11-*"
3434
}
3535
},
36-
"uap10.0": {
36+
"netcore50": {
3737
"dependencies": {
3838
"Microsoft.CSharp": "4.0.0",
3939
"System.Collections": "4.0.10",
@@ -54,10 +54,10 @@
5454
},
5555
"packInclude": {
5656
"build/net451/": "build/net451/**",
57-
"build/uap10.0/Microsoft.Data.Sqlite.targets": "build/uap10.0/Microsoft.Data.Sqlite.targets",
58-
"build/uap10.0/win10-arm/": "build/uap10.0/win10-arm/**",
59-
"build/uap10.0/win10-x64/": "build/uap10.0/win10-x64/**",
60-
"build/uap10.0/win10-x86/": "build/uap10.0/win10-x86/**",
57+
"build/netcore50/Microsoft.Data.Sqlite.targets": "build/netcore50/Microsoft.Data.Sqlite.targets",
58+
"build/netcore50/win10-arm/": "build/netcore50/win10-arm/**",
59+
"build/netcore50/win10-x64/": "build/netcore50/win10-x64/**",
60+
"build/netcore50/win10-x86/": "build/netcore50/win10-x86/**",
6161
"runtimes/": "runtimes/**"
6262
}
6363
}

test/Microsoft.Data.Sqlite.FunctionalTests.UWP/Microsoft.Data.Sqlite.FunctionalTests.UWP.csproj

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
</AppxManifest>
113113
</ItemGroup>
114114
<ItemGroup>
115-
<Content Include="$(MSBuildProjectDirectory)\..\..\src\Microsoft.Data.Sqlite\runtimes\win10-$(Platform)\native\sqlite3.dll">
115+
<Content Include="$(MSBuildProjectDirectory)\..\..\src\Microsoft.Data.Sqlite\build\netcore50\win10-$(Platform)\native\sqlite3.dll">
116116
<Visible>False</Visible>
117117
</Content>
118118
<Content Include="Assets\logo.png" />
@@ -124,8 +124,7 @@
124124
<Folder Include="Properties\" />
125125
</ItemGroup>
126126
<ItemGroup>
127-
<Reference Include="Microsoft.Data.Sqlite, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
128-
<SpecificVersion>False</SpecificVersion>
127+
<Reference Include="Microsoft.Data.Sqlite">
129128
<HintPath>..\..\artifacts\bin\Microsoft.Data.Sqlite\$(Configuration)\netcore50\Microsoft.Data.Sqlite.dll</HintPath>
130129
</Reference>
131130
</ItemGroup>
@@ -137,6 +136,6 @@
137136
<BuildDependsOn>CheckPackageReferences;$(BuildDependsOn)</BuildDependsOn>
138137
</PropertyGroup>
139138
<Target Name="CheckPackageReferences">
140-
<Error Text="sqlite3.dll not found. Run 'build initialize' to install." Condition="!Exists('$(MSBuildProjectDirectory)\..\..\src\Microsoft.Data.Sqlite\runtimes\win10-$(Platform)\native\sqlite3.dll')" />
139+
<Error Text="sqlite3.dll not found. Run 'build initialize' to install." Condition="!Exists('$(MSBuildProjectDirectory)\..\..\src\Microsoft.Data.Sqlite\build\netcore50\win10-$(Platform)\native\sqlite3.dll')" />
141140
</Target>
142141
</Project>

test/Microsoft.Data.Sqlite.FunctionalTests.UWP/Microsoft.Data.Sqlite.FunctionalTests.UWP.nuget.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8" standalone="no"?>
22
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup Condition="'$(NuGetPackageRoot)' == ''">
4-
<NuGetPackageRoot>C:\Users\namc\.nuget\packages\</NuGetPackageRoot>
4+
<NuGetPackageRoot>$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
55
</PropertyGroup>
66
<ImportGroup>
77
<Import Project="$(NuGetPackageRoot)\xunit.core\2.1.0\build\win81\xunit.core.props" Condition="Exists('$(NuGetPackageRoot)\xunit.core\2.1.0\build\win81\xunit.core.props')" />

test/Microsoft.Data.Sqlite.FunctionalTests.UWP/Microsoft.Data.Sqlite.FunctionalTests.UWP.nuget.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8" standalone="no"?>
22
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup Condition="'$(NuGetPackageRoot)' == ''">
4-
<NuGetPackageRoot>C:\Users\namc\.nuget\packages\</NuGetPackageRoot>
4+
<NuGetPackageRoot>$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
55
</PropertyGroup>
66
<ImportGroup>
77
<Import Project="$(NuGetPackageRoot)\xunit.runner.visualstudio\2.1.0\build\uap10.0\xunit.runner.visualstudio.targets" Condition="Exists('$(NuGetPackageRoot)\xunit.runner.visualstudio\2.1.0\build\uap10.0\xunit.runner.visualstudio.targets')" />

0 commit comments

Comments
 (0)