Skip to content

Commit 1bf4747

Browse files
committed
Migrated project to new VS2017 format and updated dependencies.
1 parent ef27ca1 commit 1bf4747

41 files changed

Lines changed: 125 additions & 168 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 32 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
[Dd]ebugPublic/
1616
[Rr]elease/
1717
[Rr]eleases/
18-
[Xx]64/
19-
[Xx]86/
20-
[Bb]uild/
18+
x64/
19+
x86/
2120
bld/
2221
[Bb]in/
2322
[Oo]bj/
23+
[Ll]og/
2424

2525
# Visual Studio 2015 cache/options directory
2626
.vs/
@@ -42,6 +42,7 @@ dlldata.c
4242

4343
# DNX
4444
project.lock.json
45+
project.fragment.lock.json
4546
artifacts/
4647

4748
*_i.c
@@ -81,6 +82,7 @@ ipch/
8182
*.sdf
8283
*.cachefile
8384
*.VC.db
85+
*.VC.VC.opendb
8486

8587
# Visual Studio profiler
8688
*.psess
@@ -139,13 +141,16 @@ publish/
139141
# Publish Web Output
140142
*.[Pp]ublish.xml
141143
*.azurePubxml
142-
143-
# TODO: Un-comment the next line if you do not want to checkin
144-
# your web deploy settings because they may include unencrypted
145-
# passwords
144+
# TODO: Comment the next line if you want to checkin your web deploy settings
145+
# but database connection strings (with potential passwords) will be unencrypted
146146
#*.pubxml
147147
*.publishproj
148148

149+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
150+
# checkin your Azure Web App publish settings, but sensitive information contained
151+
# in these scripts will be unencrypted
152+
PublishScripts/
153+
149154
# NuGet Packages
150155
*.nupkg
151156
# The packages folder can be ignored because of Package Restore
@@ -166,9 +171,11 @@ csx/
166171
ecf/
167172
rcf/
168173

169-
# Windows Store app package directory
174+
# Windows Store app package directories and files
170175
AppPackages/
171176
BundleArtifacts/
177+
Package.StoreAssociation.xml
178+
_pkginfo.txt
172179

173180
# Visual Studio cache files
174181
# files ending in .cache can be ignored
@@ -178,16 +185,20 @@ BundleArtifacts/
178185

179186
# Others
180187
ClientBin/
181-
[Ss]tyle[Cc]op.*
182188
~$*
183189
*~
184190
*.dbmdl
185191
*.dbproj.schemaview
192+
*.jfm
186193
*.pfx
187194
*.publishsettings
188195
node_modules/
189196
orleans.codegen.cs
190197

198+
# Since there are multiple workflows, uncomment next line to ignore bower_components
199+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
200+
#bower_components/
201+
191202
# RIA/Silverlight projects
192203
Generated_Code/
193204

@@ -231,12 +242,20 @@ FakesAssemblies/
231242
**/*.Server/ModelManifest.xml
232243
_Pvt_Extensions
233244

234-
# LightSwitch generated files
235-
GeneratedArtifacts/
236-
ModelManifest.xml
237-
238245
# Paket dependency manager
239246
.paket/paket.exe
247+
paket-files/
240248

241249
# FAKE - F# Make
242250
.fake/
251+
252+
# JetBrains Rider
253+
.idea/
254+
*.sln.iml
255+
256+
# CodeRush
257+
.cr/
258+
259+
# Python Tools for Visual Studio (PTVS)
260+
__pycache__/
261+
*.pyc

RadarrAPI.sln

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,34 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25420.1
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26206.0
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{BF3362C1-8832-453D-93B4-F6C1C446FE03}"
7-
EndProject
8-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{47AE3B60-9A47-49A4-A859-A110EC1775AA}"
9-
ProjectSection(SolutionItems) = preProject
10-
global.json = global.json
11-
EndProjectSection
12-
EndProject
13-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "RadarrAPI", "src\RadarrAPI\RadarrAPI.xproj", "{CF7ED1D7-4281-45B6-AB97-43DC3B90B332}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RadarrAPI", "RadarrAPI\RadarrAPI.csproj", "{A2E9D642-2A33-464E-8330-135B3BA6B8BF}"
147
EndProject
158
Global
169
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1710
Debug|Any CPU = Debug|Any CPU
11+
Debug|x64 = Debug|x64
12+
Debug|x86 = Debug|x86
1813
Release|Any CPU = Release|Any CPU
14+
Release|x64 = Release|x64
15+
Release|x86 = Release|x86
1916
EndGlobalSection
2017
GlobalSection(ProjectConfigurationPlatforms) = postSolution
21-
{CF7ED1D7-4281-45B6-AB97-43DC3B90B332}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
22-
{CF7ED1D7-4281-45B6-AB97-43DC3B90B332}.Debug|Any CPU.Build.0 = Debug|Any CPU
23-
{CF7ED1D7-4281-45B6-AB97-43DC3B90B332}.Release|Any CPU.ActiveCfg = Release|Any CPU
24-
{CF7ED1D7-4281-45B6-AB97-43DC3B90B332}.Release|Any CPU.Build.0 = Release|Any CPU
18+
{A2E9D642-2A33-464E-8330-135B3BA6B8BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19+
{A2E9D642-2A33-464E-8330-135B3BA6B8BF}.Debug|Any CPU.Build.0 = Debug|Any CPU
20+
{A2E9D642-2A33-464E-8330-135B3BA6B8BF}.Debug|x64.ActiveCfg = Debug|x64
21+
{A2E9D642-2A33-464E-8330-135B3BA6B8BF}.Debug|x64.Build.0 = Debug|x64
22+
{A2E9D642-2A33-464E-8330-135B3BA6B8BF}.Debug|x86.ActiveCfg = Debug|x86
23+
{A2E9D642-2A33-464E-8330-135B3BA6B8BF}.Debug|x86.Build.0 = Debug|x86
24+
{A2E9D642-2A33-464E-8330-135B3BA6B8BF}.Release|Any CPU.ActiveCfg = Release|Any CPU
25+
{A2E9D642-2A33-464E-8330-135B3BA6B8BF}.Release|Any CPU.Build.0 = Release|Any CPU
26+
{A2E9D642-2A33-464E-8330-135B3BA6B8BF}.Release|x64.ActiveCfg = Release|x64
27+
{A2E9D642-2A33-464E-8330-135B3BA6B8BF}.Release|x64.Build.0 = Release|x64
28+
{A2E9D642-2A33-464E-8330-135B3BA6B8BF}.Release|x86.ActiveCfg = Release|x86
29+
{A2E9D642-2A33-464E-8330-135B3BA6B8BF}.Release|x86.Build.0 = Release|x86
2530
EndGlobalSection
2631
GlobalSection(SolutionProperties) = preSolution
2732
HideSolutionNode = FALSE
2833
EndGlobalSection
29-
GlobalSection(NestedProjects) = preSolution
30-
{CF7ED1D7-4281-45B6-AB97-43DC3B90B332} = {BF3362C1-8832-453D-93B4-F6C1C446FE03}
31-
EndGlobalSection
3234
EndGlobal
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@
22
{
33
public class Config
44
{
5-
65
public string DataDirectory { get; set; }
76

87
public string Database { get; set; }
98

109
public string AppVeyorApiKey { get; set; }
1110

1211
public string ApiKey { get; set; }
13-
1412
}
1513
}
File renamed without changes.
File renamed without changes.

src/RadarrAPI/Database/Migrations/20170113010120_Initial.Designer.cs renamed to RadarrAPI/Database/Migrations/20170113010120_Initial.Designer.cs

File renamed without changes.

src/RadarrAPI/Database/Migrations/20170113010120_Initial.cs renamed to RadarrAPI/Database/Migrations/20170113010120_Initial.cs

File renamed without changes.

src/RadarrAPI/Database/Migrations/DatabaseContextModelSnapshot.cs renamed to RadarrAPI/Database/Migrations/DatabaseContextModelSnapshot.cs

File renamed without changes.

0 commit comments

Comments
 (0)