Merge pull request #360 from anthonylavado/project-updates

Update .csproj files and .sln for build reasons
This commit is contained in:
Anthony Lavado 2019-01-02 14:03:39 -05:00 committed by GitHub
commit e0d54ed4b5
16 changed files with 67 additions and 12 deletions

28
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,28 @@
{
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/Jellyfin.Server/bin/Debug/netcoreapp2.1/jellyfin.dll",
"args": [],
"cwd": "${workspaceFolder}/Jellyfin.Server",
// For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
"console": "internalConsole",
"stopAtEntry": false,
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
}
,]
}

15
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,15 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Jellyfin.Server/Jellyfin.Server.csproj"
],
"problemMatcher": "$msCompile"
}
]
}

View file

@ -8,6 +8,7 @@
- [flemse](https://github.com/flemse)
- [bfayers](https://github.com/bfayers)
- [Bond_009](https://github.com/Bond-009)
- [AnthonyLavado](https://github.com/anthonylavado)
- [sparky8251](https://github.com/sparky8251)
# Emby Contributors

View file

@ -6,7 +6,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="..\SharedVersion.cs"/>
<Compile Include="..\SharedVersion.cs" />
</ItemGroup>
<PropertyGroup>

View file

@ -7,7 +7,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="..\SharedVersion.cs"/>
<Compile Include="..\SharedVersion.cs" />
</ItemGroup>
<PropertyGroup>

View file

@ -6,7 +6,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="..\SharedVersion.cs"/>
<Compile Include="..\SharedVersion.cs" />
</ItemGroup>
<PropertyGroup>

View file

@ -5,7 +5,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="..\SharedVersion.cs"/>
<Compile Include="..\SharedVersion.cs" />
</ItemGroup>
<PropertyGroup>

View file

@ -6,7 +6,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="..\SharedVersion.cs"/>
<Compile Include="..\SharedVersion.cs" />
</ItemGroup>
<PropertyGroup>

View file

@ -6,7 +6,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="..\SharedVersion.cs"/>
<Compile Include="..\SharedVersion.cs" />
</ItemGroup>
<PropertyGroup>

View file

@ -6,7 +6,7 @@
</PropertyGroup>
<ItemGroup>
<Compile Include="..\SharedVersion.cs"/>
<Compile Include="..\SharedVersion.cs" />
</ItemGroup>
<ItemGroup>

View file

@ -10,7 +10,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="..\SharedVersion.cs"/>
<Compile Include="..\SharedVersion.cs" />
</ItemGroup>
</Project>

View file

@ -6,7 +6,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="..\SharedVersion.cs"/>
<Compile Include="..\SharedVersion.cs" />
</ItemGroup>
<ItemGroup>

View file

@ -6,7 +6,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="..\SharedVersion.cs"/>
<Compile Include="..\SharedVersion.cs" />
</ItemGroup>
<PropertyGroup>

View file

@ -570,6 +570,10 @@ Global
{07E39F42-A2C6-4B32-AF8C-725F957A73FF}.Release|x64.Build.0 = Release|Any CPU
{07E39F42-A2C6-4B32-AF8C-725F957A73FF}.Release|x86.ActiveCfg = Release|Any CPU
{07E39F42-A2C6-4B32-AF8C-725F957A73FF}.Release|x86.Build.0 = Release|Any CPU
{D45FC504-D06B-41A0-A220-C20B7E8F1304}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D45FC504-D06B-41A0-A220-C20B7E8F1304}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D45FC504-D06B-41A0-A220-C20B7E8F1304}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D45FC504-D06B-41A0-A220-C20B7E8F1304}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@ -577,4 +581,11 @@ Global
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3448830C-EBDC-426C-85CD-7BBB9651A7FE}
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
Policies = $0
$0.StandardHeader = $1
$1.Text = @### This header should be used to start new files.\n### It provides an explicit per-file license reference that should be present on all new files.\n### To use this header, delete these lines and the following empty line, modify <filename> to\n### the proper full path, and then add new code following the header and a single empty line.\n\n// ${FileName}\n// Part of the Jellyfin project (https://jellyfin.media)\n//\n// All copyright belongs to the Jellyfin contributors; a full list can\n// be found in the file CONTRIBUTORS.md\n//\n// This program is free software: you can redistribute it and/or modify\n// it under the terms of the GNU General Public License as published by\n// the Free Software Foundation, version 2.\n//\n// This program is distributed in the hope that it will be useful,\n// but WITHOUT ANY WARRANTY; without even the implied warranty of\n// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n// GNU General Public License for more details.\n//\n// You should have received a copy of the GNU General Public License\n// along with this program. If not, see <https://www.gnu.org/licenses/>.\n
$0.DotNetNamingPolicy = $2
$2.DirectoryNamespaceAssociation = PrefixedHierarchical
EndGlobalSection
EndGlobal

View file

@ -6,7 +6,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="..\SharedVersion.cs"/>
<Compile Include="..\SharedVersion.cs" />
</ItemGroup>
<PropertyGroup>

View file

@ -6,7 +6,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="..\SharedVersion.cs"/>
<Compile Include="..\SharedVersion.cs" />
</ItemGroup>
<PropertyGroup>