Skip to content

Commit ba00612

Browse files
committed
published nuget 4.4.0
1 parent 73772f8 commit ba00612

7 files changed

Lines changed: 509 additions & 1575 deletions

File tree

.paket/Paket.Restore.targets

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
88

99
<DetectedMSBuildVersion>$(MSBuildVersion)</DetectedMSBuildVersion>
10-
<DetectedMSBuildVersion Condition="$(MSBuildVersion) == ''">15.0.0</DetectedMSBuildVersion>
10+
<DetectedMSBuildVersion Condition="'$(MSBuildVersion)' == ''">15.0.0</DetectedMSBuildVersion>
1111
<MSBuildSupportsHashing>false</MSBuildSupportsHashing>
1212
<MSBuildSupportsHashing Condition=" '$(DetectedMSBuildVersion)' &gt; '15.8.0' ">true</MSBuildSupportsHashing>
1313
<!-- Mark that this target file has been loaded. -->
@@ -64,7 +64,7 @@
6464

6565
<!-- Disable automagic references for F# dotnet sdk -->
6666
<!-- This will not do anything for other project types -->
67-
<!-- see https://github.com/fsharp/fslang-design/blob/master/RFCs/FS-1032-fsharp-in-dotnet-sdk.md -->
67+
<!-- see https://github.com/fsharp/fslang-design/blob/master/tooling/FST-1002-fsharp-in-dotnet-sdk.md -->
6868
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
6969
<DisableImplicitSystemValueTupleReference>true</DisableImplicitSystemValueTupleReference>
7070

@@ -203,7 +203,7 @@
203203
<PackageName>$([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[0])</PackageName>
204204
<PackageVersion>$([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[1])</PackageVersion>
205205
<AllPrivateAssets>$([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[4])</AllPrivateAssets>
206-
<CopyLocal Condition="'$(Splits)' == '6'">$([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[5])</CopyLocal>
206+
<CopyLocal Condition="'%(PaketReferencesFileLinesInfo.Splits)' == '6'">$([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[5])</CopyLocal>
207207
</PaketReferencesFileLinesInfo>
208208
<PackageReference Include="%(PaketReferencesFileLinesInfo.PackageName)">
209209
<Version>%(PaketReferencesFileLinesInfo.PackageVersion)</Version>
@@ -300,7 +300,7 @@
300300
DevelopmentDependency="$(DevelopmentDependency)"
301301
BuildOutputInPackage="@(_BuildOutputInPackage)"
302302
TargetPathsToSymbols="@(_TargetPathsToSymbols)"
303-
SymbolPackageFormat="symbols.nupkg"
303+
SymbolPackageFormat="$(SymbolPackageFormat)"
304304
TargetFrameworks="@(_TargetFrameworks)"
305305
AssemblyName="$(AssemblyName)"
306306
PackageOutputPath="$(PackageOutputAbsolutePath)"
@@ -347,7 +347,7 @@
347347
DevelopmentDependency="$(DevelopmentDependency)"
348348
BuildOutputInPackage="@(_BuildOutputInPackage)"
349349
TargetPathsToSymbols="@(_TargetPathsToSymbols)"
350-
SymbolPackageFormat="symbols.nupkg"
350+
SymbolPackageFormat="$(SymbolPackageFormat)"
351351
TargetFrameworks="@(_TargetFrameworks)"
352352
AssemblyName="$(AssemblyName)"
353353
PackageOutputPath="$(PackageOutputAbsolutePath)"

paket.dependencies

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ nuget FSharp.Core
88
nuget Microsoft.CrmSdk.CoreAssemblies >= 8
99
nuget Microsoft.CrmSdk.Deployment >= 8
1010
nuget Microsoft.CrmSdk.XrmTooling.CoreAssembly >= 8
11+
nuget Microsoft.IdentityModel.Clients.ActiveDirectory ~> 2.22.0
1112
github fsharp/FAKE modules/Octokit/Octokit.fsx

paket.lock

Lines changed: 422 additions & 397 deletions
Large diffs are not rendered by default.

src/XrmDefinitelyTyped/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ open System.Reflection
77
[<assembly: AssemblyDescriptionAttribute("Tool to generate TypeScript declaration files for MS Dynamics 365/CRM client-side coding.")>]
88
[<assembly: AssemblyCompanyAttribute("Delegate A/S")>]
99
[<assembly: AssemblyCopyrightAttribute("Copyright (c) Delegate A/S 2017")>]
10-
[<assembly: AssemblyVersionAttribute("4.3.14")>]
11-
[<assembly: AssemblyFileVersionAttribute("4.3.14")>]
10+
[<assembly: AssemblyVersionAttribute("4.4.0")>]
11+
[<assembly: AssemblyFileVersionAttribute("4.4.0")>]
1212
do ()
1313

1414
module internal AssemblyVersionInformation =
@@ -17,5 +17,5 @@ module internal AssemblyVersionInformation =
1717
let [<Literal>] AssemblyDescription = "Tool to generate TypeScript declaration files for MS Dynamics 365/CRM client-side coding."
1818
let [<Literal>] AssemblyCompany = "Delegate A/S"
1919
let [<Literal>] AssemblyCopyright = "Copyright (c) Delegate A/S 2017"
20-
let [<Literal>] AssemblyVersion = "4.3.14"
21-
let [<Literal>] AssemblyFileVersion = "4.3.14"
20+
let [<Literal>] AssemblyVersion = "4.4.0"
21+
let [<Literal>] AssemblyFileVersion = "4.4.0"

0 commit comments

Comments
 (0)