Skip to content

Commit

Permalink
Name changes for org transfer (#102)
Browse files Browse the repository at this point in the history
Change namespaces and build output to match new organization
  • Loading branch information
bingenito authored Jan 31, 2024
1 parent 82f4224 commit 637ad8b
Show file tree
Hide file tree
Showing 145 changed files with 238 additions and 234 deletions.
10 changes: 5 additions & 5 deletions .cve/allow-list.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,31 @@
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd">
<suppress>
<notes><![CDATA[
file name: MorganStanley.Fdc3.NewtonsoftJson.Tests.csproj
file name: Finos.Fdc3.NewtonsoftJson.Tests.csproj
]]></notes>
<cve>CVE-2022-25921</cve>
</suppress>
<suppress>
<notes><![CDATA[
file name: MorganStanley.Fdc3.NewtonsoftJson.csproj
file name: Finos.Fdc3.NewtonsoftJson.csproj
]]></notes>
<cve>CVE-2022-25921</cve>
</suppress>
<suppress>
<notes><![CDATA[
file name: MorganStanley.Fdc3.NewtonsoftJson.Tests.csproj
file name: Finos.Fdc3.NewtonsoftJson.Tests.csproj
]]></notes>
<cpe>cpe:/a:json_project:json</cpe>
</suppress>
<suppress>
<notes><![CDATA[
file name: MorganStanley.Fdc3.NewtonsoftJson.Tests.csproj
file name: Finos.Fdc3.NewtonsoftJson.Tests.csproj
]]></notes>
<cpe>cpe:/a:morgan-json_project:morgan-json</cpe>
</suppress>
<suppress>
<notes><![CDATA[
file name: MorganStanley.Fdc3.NewtonsoftJson.Tests.csproj
file name: Finos.Fdc3.NewtonsoftJson.Tests.csproj
]]></notes>
<cpe>cpe:/a:morgan_project:morgan</cpe>
</suppress>
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,19 @@ jobs:

- name: Pack Fdc3
run:
dotnet pack src/Fdc3/MorganStanley.Fdc3.csproj --no-build --configuration Release --output packages
dotnet pack src/Fdc3/Finos.Fdc3.csproj --no-build --configuration Release --output packages

- name: Pack Fdc3.NewtonsoftJson
run:
dotnet pack src/Fdc3.NewtonsoftJson/Finos.Fdc3.NewtonsoftJson.csproj --no-build --configuration Release --output packages

- name: Pack Fdc3.Json
run:
dotnet pack src/Fdc3.NewtonsoftJson/MorganStanley.Fdc3.NewtonsoftJson.csproj --no-build --configuration Release --output packages
dotnet pack src/Fdc3.Json/Finos.Fdc3.Json.csproj --no-build --configuration Release --output packages

- name: Pack Fdc3.AppDirectory
run:
dotnet pack src/Fdc3.AppDirectory/MorganStanley.Fdc3.AppDirectory.csproj --no-build --configuration Release --output packages
dotnet pack src/Fdc3.AppDirectory/Finos.Fdc3.AppDirectory.csproj --no-build --configuration Release --output packages

- name: Upload
uses: actions/upload-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ fdc3-dotnet
===========

[![FINOS - Incubating](https://cdn.jsdelivr.net/gh/finos/contrib-toolbox@master/images/badge-incubating.svg)](https://community.finos.org/docs/governance/Software-Projects/stages/incubating)
[![CI](https://github.com/morganstanley/fdc3-dotnet/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/morganstanley/fdc3-dotnet/actions/workflows/continuous-integration.yml)
[![CI](https://github.com/finos/fdc3-dotnet/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/finos/fdc3-dotnet/actions/workflows/continuous-integration.yml)

.NET Standard 2.0 declarations to implement concrete [FDC3](https://fdc3.finos.org/) compatible .NET desktop agents and usage of intents/context.

Expand Down
4 changes: 2 additions & 2 deletions src/Examples/WpfFdc3/Fdc3/Channel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
* and limitations under the License.
*/

using MorganStanley.Fdc3;
using MorganStanley.Fdc3.Context;
using Finos.Fdc3;
using Finos.Fdc3.Context;
using Prism.Events;
using System.Collections.Generic;
using System.Threading.Tasks;
Expand Down
2 changes: 1 addition & 1 deletion src/Examples/WpfFdc3/Fdc3/ContextEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* and limitations under the License.
*/

using MorganStanley.Fdc3.Context;
using Finos.Fdc3.Context;
using Prism.Events;

namespace WpfFdc3.Fdc3
Expand Down
4 changes: 2 additions & 2 deletions src/Examples/WpfFdc3/Fdc3/DesktopAgent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
* and limitations under the License.
*/

using MorganStanley.Fdc3;
using MorganStanley.Fdc3.Context;
using Finos.Fdc3;
using Finos.Fdc3.Context;
using System;
using System.Collections.Generic;
using System.Linq;
Expand Down
4 changes: 2 additions & 2 deletions src/Examples/WpfFdc3/Fdc3/Listener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
* and limitations under the License.
*/

using MorganStanley.Fdc3;
using MorganStanley.Fdc3.Context;
using Finos.Fdc3;
using Finos.Fdc3.Context;
using Prism.Events;

namespace WpfFdc3.Fdc3
Expand Down
6 changes: 3 additions & 3 deletions src/Examples/WpfFdc3/ViewModels/WorkbenchViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
* and limitations under the License.
*/

using MorganStanley.Fdc3;
using MorganStanley.Fdc3.Context;
using MorganStanley.Fdc3.NewtonsoftJson.Serialization;
using Finos.Fdc3;
using Finos.Fdc3.Context;
using Finos.Fdc3.NewtonsoftJson.Serialization;
using Newtonsoft.Json;
using Prism.Commands;
using System.Collections.Generic;
Expand Down
4 changes: 2 additions & 2 deletions src/Examples/WpfFdc3/WpfFdc3.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Fdc3.NewtonsoftJson\MorganStanley.Fdc3.NewtonsoftJson.csproj" />
<ProjectReference Include="..\..\Fdc3\MorganStanley.Fdc3.csproj" />
<ProjectReference Include="..\..\Fdc3.NewtonsoftJson\Finos.Fdc3.NewtonsoftJson.csproj" />
<ProjectReference Include="..\..\Fdc3\Finos.Fdc3.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Fdc3.AppDirectory/AppChannel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
using System;
using System.Collections.Generic;

namespace MorganStanley.Fdc3.AppDirectory
namespace Finos.Fdc3.AppDirectory
{
/// <summary>
/// Describes the application's use of App Channels.
Expand Down
2 changes: 1 addition & 1 deletion src/Fdc3.AppDirectory/AppDetails/CitrixAppDetails.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

using System;

namespace MorganStanley.Fdc3.AppDirectory
namespace Finos.Fdc3.AppDirectory
{
/// <summary>
/// App virtualized via Citrix.
Expand Down
2 changes: 1 addition & 1 deletion src/Fdc3.AppDirectory/AppDetails/NativeAppDetails.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

using System;

namespace MorganStanley.Fdc3.AppDirectory
namespace Finos.Fdc3.AppDirectory
{
/// <summary>
/// Native application pre-installed on a device and launch via a filesystem path.
Expand Down
2 changes: 1 addition & 1 deletion src/Fdc3.AppDirectory/AppDetails/OnlineNativeAppDetails.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

using System;

namespace MorganStanley.Fdc3.AppDirectory
namespace Finos.Fdc3.AppDirectory
{
/// <summary>
/// Native app that have an online launcher, e.g. online ClickOnce app deployments.
Expand Down
2 changes: 1 addition & 1 deletion src/Fdc3.AppDirectory/AppDetails/WebAppDetails.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

using System;

namespace MorganStanley.Fdc3.AppDirectory
namespace Finos.Fdc3.AppDirectory
{
/// <summary>
/// Web application launched via a URL.
Expand Down
2 changes: 1 addition & 1 deletion src/Fdc3.AppDirectory/AppDirectoryException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
using System;
using System.Runtime.Serialization;

namespace MorganStanley.Fdc3.AppDirectory
namespace Finos.Fdc3.AppDirectory
{
/// <summary>
/// Base class for exceptions thrown by <see cref="IAppDirectory"/> implementations
Expand Down
2 changes: 1 addition & 1 deletion src/Fdc3.AppDirectory/AppNotFoundException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

using System.Runtime.Serialization;

namespace MorganStanley.Fdc3.AppDirectory
namespace Finos.Fdc3.AppDirectory
{
/// <summary>
/// The exception that is thrown by <see cref="IAppDirectory.GetApp"/> when the app is not found.
Expand Down
2 changes: 1 addition & 1 deletion src/Fdc3.AppDirectory/AppType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* and limitations under the License.
*/

namespace MorganStanley.Fdc3.AppDirectory
namespace Finos.Fdc3.AppDirectory
{
/// <summary>
/// FDC3 application types
Expand Down
2 changes: 1 addition & 1 deletion src/Fdc3.AppDirectory/Fdc3App.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
using System;
using System.Collections.Generic;

namespace MorganStanley.Fdc3.AppDirectory
namespace Finos.Fdc3.AppDirectory
{
/// <summary>
/// Defines an application retrieved from an FDC3 App Directory, which can then be launched.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<RootNamespace>MorganStanley.Fdc3.AppDirectory</RootNamespace>
<AssemblyName>MorganStanley.Fdc3.AppDirectory</AssemblyName>
<RootNamespace>Finos.Fdc3.AppDirectory</RootNamespace>
<AssemblyName>Finos.Fdc3.AppDirectory</AssemblyName>
<VersionPrefix>2.0.0</VersionPrefix>
<VersionSuffix>alpha.8</VersionSuffix>
<Product>.NET FDC3 Newtonsoft JSON</Product>
Expand All @@ -12,7 +12,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>8.0</LangVersion>
<RepositoryUrl>https://github.com/morganstanley/fdc3-dotnet</RepositoryUrl>
<RepositoryUrl>https://github.com/finos/fdc3-dotnet</RepositoryUrl>
<Description>.NET Standard 2.0 declarations to implement FDC3 AppDirectory.</Description>
<Tags>FDC3</Tags>
</PropertyGroup>
Expand All @@ -39,7 +39,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Fdc3\MorganStanley.Fdc3.csproj" />
<ProjectReference Include="..\Fdc3\Finos.Fdc3.csproj" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/Fdc3.AppDirectory/IAppDirectory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
using System.Collections.Generic;
using System.Threading.Tasks;

namespace MorganStanley.Fdc3.AppDirectory
namespace Finos.Fdc3.AppDirectory
{
/// <summary>
/// Interface definition for the AppDirectory.
Expand Down
2 changes: 1 addition & 1 deletion src/Fdc3.AppDirectory/IntentMetadata.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
using System;
using System.Collections.Generic;

namespace MorganStanley.Fdc3.AppDirectory
namespace Finos.Fdc3.AppDirectory
{
/// <summary>
/// Implementation of <see cref="IIntentMetadata"/>
Expand Down
2 changes: 1 addition & 1 deletion src/Fdc3.AppDirectory/Intents.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

using System.Collections.Generic;

namespace MorganStanley.Fdc3.AppDirectory
namespace Finos.Fdc3.AppDirectory
{
/// <summary>
/// Describes the app's interactions with intents.
Expand Down
2 changes: 1 addition & 1 deletion src/Fdc3.AppDirectory/Interop.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

using System.Collections.Generic;

namespace MorganStanley.Fdc3.AppDirectory
namespace Finos.Fdc3.AppDirectory
{
/// <summary>
/// Metadata that describes how the application uses FDC3 APIs. This metadata serves multiple purposes:
Expand Down
2 changes: 1 addition & 1 deletion src/Fdc3.AppDirectory/LocalizedVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* and limitations under the License.
*/

namespace MorganStanley.Fdc3.AppDirectory
namespace Finos.Fdc3.AppDirectory
{
public class LocalizedVersion
{
Expand Down
2 changes: 1 addition & 1 deletion src/Fdc3.AppDirectory/UserChannels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

using System.Collections.Generic;

namespace MorganStanley.Fdc3.AppDirectory
namespace Finos.Fdc3.AppDirectory
{
/// <summary>
/// Describes the application's use of context types on User Channels.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<RootNamespace>MorganStanley.Fdc3.Json</RootNamespace>
<AssemblyName>MorganStanley.Fdc3.Json</AssemblyName>
<RootNamespace>Finos.Fdc3.Json</RootNamespace>
<AssemblyName>Finos.Fdc3.Json</AssemblyName>
<VersionPrefix>2.0.0</VersionPrefix>
<VersionSuffix>alpha.8</VersionSuffix>
<Product>.NET FDC3 System.Text JSON</Product>
Expand All @@ -12,8 +12,8 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>8.0</LangVersion>
<RepositoryUrl>https://github.com/morganstanley/fdc3-dotnet</RepositoryUrl>
<Description>.NET Standard 2.0 FDC3 JSON helpers based on System.Text.Json for use with MorganStanley.Fdc3.</Description>
<RepositoryUrl>https://github.com/finos/fdc3-dotnet</RepositoryUrl>
<Description>.NET Standard 2.0 FDC3 JSON helpers based on System.Text.Json for use with Finos.Fdc3.</Description>
<Tags>FDC3</Tags>
</PropertyGroup>

Expand Down Expand Up @@ -43,7 +43,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Fdc3.AppDirectory\MorganStanley.Fdc3.AppDirectory.csproj" />
<ProjectReference Include="..\Fdc3.AppDirectory\Finos.Fdc3.AppDirectory.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
* and limitations under the License.
*/

using MorganStanley.Fdc3.AppDirectory;
using Finos.Fdc3.AppDirectory;
using System;
using System.Text.Json;
using System.Text.Json.Nodes;
using System.Text.Json.Serialization;

namespace MorganStanley.Fdc3.Json.Serialization
namespace Finos.Fdc3.Json.Serialization
{
internal class Fdc3AppConverter : JsonConverter<Fdc3App>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

using System.Text.Json;

namespace MorganStanley.Fdc3.Json.Serialization
namespace Finos.Fdc3.Json.Serialization
{
internal class Fdc3CamelCaseNamingPolicy : JsonNamingPolicy
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
using System.Text.Json;
using System.Text.Json.Serialization;

namespace MorganStanley.Fdc3.Json.Serialization
namespace Finos.Fdc3.Json.Serialization
{
public static class Fdc3JsonSerializerOptions
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
* and limitations under the License.
*/

using MorganStanley.Fdc3.Context;
using Finos.Fdc3.Context;
using System;
using System.Text.Json;
using System.Text.Json.Nodes;
using System.Text.Json.Serialization;

namespace MorganStanley.Fdc3.Json.Serialization
namespace Finos.Fdc3.Json.Serialization
{
internal class RecipientJsonConverter : JsonConverter<IRecipient>
{
Expand Down
Loading

0 comments on commit 637ad8b

Please sign in to comment.