Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Netstandard conversion #367

Merged
merged 26 commits into from
Aug 25, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
f94bd75
Iniital conversion to netstandard with everything compiling except th…
PureWeen Jul 9, 2017
eb3dcc3
fixed registration attempt to consolidate and mistaken checkin on sql…
PureWeen Jul 9, 2017
d41a6e4
Fixed up unit tests to work and updated to latest version of xunit
PureWeen Jul 13, 2017
5caf31a
removed excess libraries from AssemblyInfo.cs and moved all the files…
PureWeen Jul 18, 2017
fdccef6
First version of cake build
PureWeen Jul 22, 2017
4cc69d4
removed poor attempt at central package
PureWeen Jul 22, 2017
5132d92
added dummy project file to create inclusive sqllite package
PureWeen Jul 22, 2017
15ef212
fixed target on mobile project
PureWeen Jul 22, 2017
46a461b
adding build.props to the correct folder
PureWeen Jul 25, 2017
4927422
added nuget config for myget, added shared not uwp, ditched the Akava…
PureWeen Aug 2, 2017
1c0e41a
fixed so unit tests will run and fixed up some of the package identif…
PureWeen Aug 3, 2017
f22b09f
changed appdomain on build cake file and made first attempt at appvey…
PureWeen Aug 3, 2017
3a6e196
appveyor
PureWeen Aug 3, 2017
afc9dd0
removed
PureWeen Aug 3, 2017
e75a58b
rolled back a bit
PureWeen Aug 3, 2017
6cde31e
set akavache.tests to be non packable
PureWeen Aug 4, 2017
67c62bd
set is packable back to true :-p
PureWeen Aug 4, 2017
07e2c8b
updating min target framework from net45 to net452 to match reactiveu…
PureWeen Aug 13, 2017
5fc9ebe
Upgraded nuget packages and added build target for MSBuild
PureWeen Aug 17, 2017
d2e6870
first go at integration tests
PureWeen Aug 22, 2017
0076141
set output path for android so path stays under 248 characters
PureWeen Aug 22, 2017
4012265
added android output folders to gitignore
PureWeen Aug 23, 2017
0414550
moving to a core package
PureWeen Aug 23, 2017
a3c325b
Moving packages around to more correctly match what's currently in nuget
PureWeen Aug 23, 2017
c3882b7
Fixing package id on UW)
PureWeen Aug 23, 2017
c1e2550
copied over changes removing custom implementation of concurrenydicti…
PureWeen Aug 23, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,11 @@ _Pvt_Extensions
# Tools
tools/

# ReactiveUI
# Akavache
artifacts/
src/CommonAssemblyInfo.cs
src/ReactiveUI.Events/Events_*.cs

# NugetIntegrationTests
tests/NuGetInstallationIntegrationTests/Android/t/**/*
tests/NuGetInstallationIntegrationTests/XamarinFormsApp/XamarinFormsApp.Android/t/**/*
12 changes: 4 additions & 8 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# configuration for "master" branch
-
configuration: Release
image: Visual Studio 2017
branches:
only:
- master
Expand All @@ -14,10 +15,7 @@
NUGET_APIKEY:
secure: 0g2AqQxgiAIFhqoJbbmEPrJa15Z8U5xYT6vQe43Gocuxbjw74hBAIKbU+Cj65UNd
build_script:
- ps: >-
./bootstrap.ps1

./build.cmd
- ./build.cmd
artifacts:
- path: artifacts/*
- path: '**/bin/*'
Expand All @@ -26,6 +24,7 @@
# configuration for "develop" branch
-
configuration: Development
image: Visual Studio 2017
branches:
except:
- master
Expand All @@ -36,10 +35,7 @@
NUGET_APIKEY:
secure: YP/3KxC2ffsuHNaolPXj66JVGzSjON9FcR2S2OEzn9c6SV14oPzUh1ySyeT+G+aA
build_script:
- ps: >-
./bootstrap.ps1

./build.cmd
- ./build.cmd
artifacts:
- path: artifacts/*
- path: '**/bin/*'
Expand Down
56 changes: 0 additions & 56 deletions bootstrap.ps1

This file was deleted.

Loading