Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Coscine
backend
apis
Pid
Commits
c5d7174b
Commit
c5d7174b
authored
Nov 09, 2020
by
Marcel Nellesen
Browse files
Fix: Updated dependencies
parent
2d591d68
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/Pid/App.config
View file @
c5d7174b
...
...
@@ -168,7 +168,11 @@
</
dependentAssembly
>
<
dependentAssembly
>
<
assemblyIdentity
name
=
"Coscine.Database"
publicKeyToken
=
"767d77427707b70a"
culture
=
"neutral"
/>
<
bindingRedirect
oldVersion
=
"0.0.0.0-1.24.0.0"
newVersion
=
"1.24.0.0"
/>
<
bindingRedirect
oldVersion
=
"0.0.0.0-1.26.0.0"
newVersion
=
"1.26.0.0"
/>
</
dependentAssembly
>
<
dependentAssembly
>
<
assemblyIdentity
name
=
"Coscine.Database.T4"
publicKeyToken
=
"84b4c404a0696261"
culture
=
"neutral"
/>
<
bindingRedirect
oldVersion
=
"0.0.0.0-1.26.0.0"
newVersion
=
"1.26.0.0"
/>
</
dependentAssembly
>
</
assemblyBinding
>
</
runtime
>
...
...
src/Pid/Models/MessageObject.cs
View file @
c5d7174b
...
...
@@ -6,25 +6,52 @@ using System.Threading.Tasks;
namespace
Coscine.Api.Pid.Models
{
/// <summary>
/// Message Object.
/// </summary>
public
class
MessageObject
{
/// <summary>
/// Name of the requester.
/// </summary>
public
string
Name
{
get
;
set
;
}
/// <summary>
/// Email address of the requester.
/// </summary>
public
string
Email
{
get
;
set
;
}
/// <summary>
/// Message Text.
/// </summary>
public
string
Message
{
get
;
set
;
}
/// <summary>
/// Send copy to requester.
/// </summary>
public
bool
SendCopy
{
get
;
set
;
}
/// <summary>
/// Pid of the resource.
/// </summary>
public
string
Pid
{
get
;
set
;
}
/// <summary>
/// Message Object.
/// </summary>
public
string
Guid
{
get
;
set
;
}
/// <summary>
/// Parameterless constructor for the Message Object.
/// </summary>
public
MessageObject
()
{
}
/// <summary>
/// Constructor Message Object.
/// </summary>
public
MessageObject
(
string
name
,
string
email
,
string
message
,
bool
sendCopy
,
string
pid
,
string
guid
)
{
Name
=
name
;
...
...
src/Pid/Pid.csproj
View file @
c5d7174b
...
...
@@ -35,6 +35,7 @@
<ErrorReport>
prompt
</ErrorReport>
<WarningLevel>
4
</WarningLevel>
<Prefer32Bit>
false
</Prefer32Bit>
<DocumentationFile>
bin\Debug\Coscine.Api.Pid.xml
</DocumentationFile>
</PropertyGroup>
<PropertyGroup
Condition=
" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "
>
<PlatformTarget>
AnyCPU
</PlatformTarget>
...
...
@@ -44,6 +45,7 @@
<DefineConstants>
TRACE
</DefineConstants>
<ErrorReport>
prompt
</ErrorReport>
<WarningLevel>
4
</WarningLevel>
<DocumentationFile>
bin\Release\Coscine.Pid.Resources.xml
</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference
Include=
"Consul, Version=0.7.2.6, Culture=neutral, PublicKeyToken=20a6ad9a81df1d95, processorArchitecture=MSIL"
>
...
...
@@ -52,17 +54,17 @@
<Reference
Include=
"Coscine.Action, Version=1.16.0.0, Culture=neutral, processorArchitecture=AMD64"
>
<HintPath>
..\packages\Coscine.Action.1.16.0\lib\net461\Coscine.Action.dll
</HintPath>
</Reference>
<Reference
Include=
"Coscine.ApiCommons, Version=1.
9
.0.0, Culture=neutral, PublicKeyToken=af4c1345df96546b, processorArchitecture=MSIL"
>
<HintPath>
..\packages\Coscine.ApiCommons.1.
9
.0\lib\net461\Coscine.ApiCommons.dll
</HintPath>
<Reference
Include=
"Coscine.ApiCommons, Version=1.
10
.0.0, Culture=neutral, PublicKeyToken=af4c1345df96546b, processorArchitecture=MSIL"
>
<HintPath>
..\packages\Coscine.ApiCommons.1.
10
.0\lib\net461\Coscine.ApiCommons.dll
</HintPath>
</Reference>
<Reference
Include=
"Coscine.Configuration, Version=1.5.0.0, Culture=neutral, PublicKeyToken=ce3d7a32d7dc1e5a, processorArchitecture=MSIL"
>
<HintPath>
..\packages\Coscine.Configuration.1.5.0\lib\net461\Coscine.Configuration.dll
</HintPath>
</Reference>
<Reference
Include=
"Coscine.Database, Version=1.2
4
.0.0, Culture=neutral, PublicKeyToken=767d77427707b70a, processorArchitecture=MSIL"
>
<HintPath>
..\packages\Coscine.Database.1.2
4
.0\lib\net461\Coscine.Database.dll
</HintPath>
<Reference
Include=
"Coscine.Database, Version=1.2
6
.0.0, Culture=neutral, PublicKeyToken=767d77427707b70a, processorArchitecture=MSIL"
>
<HintPath>
..\packages\Coscine.Database.1.2
6
.0\lib\net461\Coscine.Database.dll
</HintPath>
</Reference>
<Reference
Include=
"Coscine.Database.T4, Version=1.2
4
.0.0, Culture=neutral, PublicKeyToken=84b4c404a0696261, processorArchitecture=MSIL"
>
<HintPath>
..\packages\Coscine.Database.1.2
4
.0\lib\net461\Coscine.Database.T4.dll
</HintPath>
<Reference
Include=
"Coscine.Database.T4, Version=1.2
6
.0.0, Culture=neutral, PublicKeyToken=84b4c404a0696261, processorArchitecture=MSIL"
>
<HintPath>
..\packages\Coscine.Database.1.2
6
.0\lib\net461\Coscine.Database.T4.dll
</HintPath>
</Reference>
<Reference
Include=
"Coscine.Logging, Version=1.2.0.0, Culture=neutral, PublicKeyToken=e1ed402bc3f6525e, processorArchitecture=MSIL"
>
<HintPath>
..\packages\Coscine.Logging.1.2.0\lib\net461\Coscine.Logging.dll
</HintPath>
...
...
src/Pid/packages.config
View file @
c5d7174b
...
...
@@ -2,9 +2,9 @@
<
packages
>
<
package
id
=
"Consul"
version
=
"0.7.2.6"
targetFramework
=
"net461"
/>
<
package
id
=
"Coscine.Action"
version
=
"1.16.0"
targetFramework
=
"net461"
/>
<
package
id
=
"Coscine.ApiCommons"
version
=
"1.
9
.0"
targetFramework
=
"net461"
/>
<
package
id
=
"Coscine.ApiCommons"
version
=
"1.
10
.0"
targetFramework
=
"net461"
/>
<
package
id
=
"Coscine.Configuration"
version
=
"1.5.0"
targetFramework
=
"net461"
/>
<
package
id
=
"Coscine.Database"
version
=
"1.2
4
.0"
targetFramework
=
"net461"
/>
<
package
id
=
"Coscine.Database"
version
=
"1.2
6
.0"
targetFramework
=
"net461"
/>
<
package
id
=
"Coscine.Logging"
version
=
"1.2.0"
targetFramework
=
"net461"
/>
<
package
id
=
"Coscine.ProxyApi"
version
=
"1.3.0"
targetFramework
=
"net461"
/>
<
package
id
=
"EntityFramework"
version
=
"6.4.4"
targetFramework
=
"net461"
/>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment