Skip to content

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
C# 6 string interpolation not supported on the build server yet
  • Loading branch information
bdukes committed Aug 29, 2019
1 parent a1b0711 commit 04bda73
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Source/EmploymentController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public override IList<SearchDocument> GetModifiedSearchDocuments(ModuleInfo modu
var revisionDate = (DateTime)jobs["RevisionDate"];
var searchDocument = new SearchDocument
{
UniqueKey = $"Employment_Job_{jobId}",
UniqueKey = "Employment_Job_" + jobId,
ModifiedTimeUtc = revisionDate.ToUniversalTime(),
ModuleId = moduleInfo.ModuleID,
PortalId = moduleInfo.PortalID,
Expand Down
2 changes: 2 additions & 0 deletions Source/EngageEmployment.csproj.DotSettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:String x:Key="/Default/CodeInspection/CSharpLanguageProject/LanguageLevel/@EntryValue">CSharp50</s:String></wpf:ResourceDictionary>

0 comments on commit 04bda73

Please sign in to comment.