From cd2ad3ced10da9b92120c6ed9e296950397caac1 Mon Sep 17 00:00:00 2001 From: Steven Giesel Date: Tue, 14 Aug 2018 09:51:19 +0200 Subject: [PATCH] Added missing reference / project --- .../Jobbr.Runtime.Tests.csproj | 8 ++-- source/Jobbr.Runtime.sln | 2 +- .../Jobbr.SampleTaskLibrary/AnotherJobTask.cs | 9 ++++ .../Jobbr.SampleTaskLibrary.csproj | 47 +++++++++++++++++++ .../Properties/AssemblyInfo.cs | 36 ++++++++++++++ 5 files changed, 97 insertions(+), 5 deletions(-) create mode 100644 source/Jobbr.SampleTaskLibrary/AnotherJobTask.cs create mode 100644 source/Jobbr.SampleTaskLibrary/Jobbr.SampleTaskLibrary.csproj create mode 100644 source/Jobbr.SampleTaskLibrary/Properties/AssemblyInfo.cs diff --git a/source/Jobbr.Runtime.Tests/Jobbr.Runtime.Tests.csproj b/source/Jobbr.Runtime.Tests/Jobbr.Runtime.Tests.csproj index f749ed0..51eceb5 100644 --- a/source/Jobbr.Runtime.Tests/Jobbr.Runtime.Tests.csproj +++ b/source/Jobbr.Runtime.Tests/Jobbr.Runtime.Tests.csproj @@ -56,14 +56,14 @@ - - {8504ff9b-e628-412b-b8fb-af21c0d69f5f} - Jobbr.SampleTaskLibrary - {237c7a31-a97f-4473-9b6a-6b5724de35e3} Jobbr.Runtime + + {8504ff9b-e628-412b-b8fb-af21c0d69f5f} + Jobbr.SampleTaskLibrary + diff --git a/source/Jobbr.Runtime.sln b/source/Jobbr.Runtime.sln index 5dd8836..1265071 100644 --- a/source/Jobbr.Runtime.sln +++ b/source/Jobbr.Runtime.sln @@ -16,7 +16,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{40469AC8 ..\README.md = ..\README.md EndProjectSection EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Jobbr.SampleTaskLibrary", "..\..\Jobbr.SampleTaskLibrary\Jobbr.SampleTaskLibrary.csproj", "{8504FF9B-E628-412B-B8FB-AF21C0D69F5F}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Jobbr.SampleTaskLibrary", "Jobbr.SampleTaskLibrary\Jobbr.SampleTaskLibrary.csproj", "{8504FF9B-E628-412B-B8FB-AF21C0D69F5F}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/source/Jobbr.SampleTaskLibrary/AnotherJobTask.cs b/source/Jobbr.SampleTaskLibrary/AnotherJobTask.cs new file mode 100644 index 0000000..03ac9a2 --- /dev/null +++ b/source/Jobbr.SampleTaskLibrary/AnotherJobTask.cs @@ -0,0 +1,9 @@ +namespace Jobbr.SampleTaskLibrary +{ + /// + /// Example class for JobResolverTest + /// + public class AnotherJobTask + { + } +} diff --git a/source/Jobbr.SampleTaskLibrary/Jobbr.SampleTaskLibrary.csproj b/source/Jobbr.SampleTaskLibrary/Jobbr.SampleTaskLibrary.csproj new file mode 100644 index 0000000..f27c0a1 --- /dev/null +++ b/source/Jobbr.SampleTaskLibrary/Jobbr.SampleTaskLibrary.csproj @@ -0,0 +1,47 @@ + + + + + Debug + AnyCPU + {8504FF9B-E628-412B-B8FB-AF21C0D69F5F} + Library + Properties + Jobbr.SampleTaskLibrary + Jobbr.SampleTaskLibrary + v4.6.2 + 512 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/source/Jobbr.SampleTaskLibrary/Properties/AssemblyInfo.cs b/source/Jobbr.SampleTaskLibrary/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..8d37007 --- /dev/null +++ b/source/Jobbr.SampleTaskLibrary/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Jobbr.SampleTaskLibrary")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Jobbr.SampleTaskLibrary")] +[assembly: AssemblyCopyright("Copyright © 2018")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("8504ff9b-e628-412b-b8fb-af21c0d69f5f")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")]