Skip to content

Commit

Permalink
Version 3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarkko-10Duke committed Jan 3, 2022
1 parent 3da343b commit 07c950d
Show file tree
Hide file tree
Showing 22 changed files with 153 additions and 121 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ test-tmp/
.idea/
.DS_Store
*.nupkg
*.snupkg
packages/
17 changes: 8 additions & 9 deletions Tenduke.Client.AspNetCore/Tenduke.Client.AspNetCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,17 @@
<Description>ASP.NET client library for 10Duke Identity and Entitlement</Description>
<PackageTags>Entitlement Licensing Identity 10Duke AspNet</PackageTags>
<Copyright>Copyright © 2018- 10Duke Software</Copyright>
<PackageLicenseUrl>https://github.com/10Duke/10duke-dotnet-client/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/10Duke/10duke-dotnet-client</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/10Duke/10duke-dotnet-client/master/10duke.ico</PackageIconUrl>
<RepositoryUrl>https://github.com/10Duke/10duke-dotnet-client</RepositoryUrl>
<PackageReleaseNotes>Update to Tenduke.Client 3.2.0</PackageReleaseNotes>
<RepositoryUrl>https://github.com/10Duke/10duke-dotnet-client.git</RepositoryUrl>
<PackageReleaseNotes>Update to Tenduke.Client 3.3.1</PackageReleaseNotes>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeSource>true</IncludeSource>
<Version>3.2.0</Version>
<AssemblyVersion>3.2.0.0</AssemblyVersion>
<Version>3.3.1</Version>
<AssemblyVersion>3.3.1.0</AssemblyVersion>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<ItemGroup>
Expand All @@ -24,10 +26,7 @@
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.HttpOverrides" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Tenduke.Client\Tenduke.Client.csproj" />
<PackageReference Include="Tenduke.Client" Version="3.3.1" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,19 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>3.2.0</Version>
<Version>3.3.1</Version>
<Authors>10Duke Software</Authors>
<Company>10Duke Software</Company>
<Description>Client library for 10Duke Identity and Entitlement that uses the operating system default browser for user interaction</Description>
<Copyright>Copyright © 2018- 10Duke Software</Copyright>
<PackageIconUrl>https://raw.githubusercontent.com/10Duke/10duke-dotnet-client/master/10duke.ico</PackageIconUrl>
<PackageProjectUrl>https://github.com/10Duke/10duke-dotnet-client</PackageProjectUrl>
<RepositoryUrl>https://github.com/10Duke/10duke-dotnet-client</RepositoryUrl>
<RepositoryUrl>https://github.com/10Duke/10duke-dotnet-client.git</RepositoryUrl>
<PackageTags>Entitlement Licensing Identity 10Duke</PackageTags>
<PackageReleaseNotes>Initial version</PackageReleaseNotes>
<PackageReleaseNotes>Support reading signer key from server JWKS endpoint, fix public key serialization with .NET Core, and update dependency versions</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<ItemGroup>
Expand All @@ -24,8 +27,8 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Tenduke.Client.WinBase\Tenduke.Client.WinBase.csproj" />
<ProjectReference Include="..\Tenduke.Client\Tenduke.Client.csproj" />
<PackageReference Include="Tenduke.Client" Version="3.3.1" />
<PackageReference Include="Tenduke.Client.WinBase" Version="3.3.1" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Tenduke.Client.DefaultBrowser\Tenduke.Client.DefaultBrowser.csproj" />
<ProjectReference Include="..\Tenduke.Client.WinBase\Tenduke.Client.WinBase.csproj" />
<ProjectReference Include="..\Tenduke.Client\Tenduke.Client.csproj" />
<PackageReference Include="Tenduke.Client.DefaultBrowser" Version="3.3.1" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Tenduke.Client.Desktop/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("3.2.1.0")]
[assembly: AssemblyFileVersion("3.2.1.0")]
[assembly: AssemblyVersion("3.3.1.0")]
[assembly: AssemblyFileVersion("3.3.1.0")]
28 changes: 18 additions & 10 deletions Tenduke.Client.Desktop/Tenduke.Client.Desktop.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
<CefSharpAnyCpuSupport>true</CefSharpAnyCpuSupport>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand All @@ -29,6 +31,8 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CefSharpAnyCpuSupport>true</CefSharpAnyCpuSupport>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand All @@ -39,6 +43,8 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CefSharpAnyCpuSupport>true</CefSharpAnyCpuSupport>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
Expand All @@ -64,6 +70,12 @@
<Reference Include="Microsoft.Extensions.Primitives, Version=6.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.Extensions.Primitives.6.0.0\lib\net461\Microsoft.Extensions.Primitives.dll</HintPath>
</Reference>
<Reference Include="Microsoft.IdentityModel.Logging, Version=6.15.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.IdentityModel.Logging.6.15.0\lib\net461\Microsoft.IdentityModel.Logging.dll</HintPath>
</Reference>
<Reference Include="Microsoft.IdentityModel.Tokens, Version=6.15.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.IdentityModel.Tokens.6.15.0\lib\net461\Microsoft.IdentityModel.Tokens.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Win32.Registry, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.Win32.Registry.5.0.0\lib\net461\Microsoft.Win32.Registry.dll</HintPath>
</Reference>
Expand Down Expand Up @@ -102,6 +114,12 @@
<HintPath>..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll</HintPath>
</Reference>
<Reference Include="System.Web.Extensions" />
<Reference Include="Tenduke.Client, Version=3.3.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Tenduke.Client.3.3.1\lib\netstandard2.0\Tenduke.Client.dll</HintPath>
</Reference>
<Reference Include="Tenduke.Client.WinBase, Version=3.3.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Tenduke.Client.WinBase.3.3.1\lib\netstandard2.0\Tenduke.Client.WinBase.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="BaseDesktopClient.cs" />
Expand All @@ -114,16 +132,6 @@
<ItemGroup>
<EmbeddedResource Include="resources\loader.html" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Tenduke.Client.WinBase\Tenduke.Client.WinBase.csproj">
<Project>{8930610c-b2ca-4167-a6b0-b4a10676bb54}</Project>
<Name>Tenduke.Client.WinBase</Name>
</ProjectReference>
<ProjectReference Include="..\Tenduke.Client\Tenduke.Client.csproj">
<Project>{b5112486-55f1-4fb7-9239-bd32a8bbfab7}</Project>
<Name>Tenduke.Client</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
Expand Down
7 changes: 3 additions & 4 deletions Tenduke.Client.Desktop/Tenduke.Client.Desktop.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@
<title>$title$</title>
<authors>10Duke Software</authors>
<owners>10Duke Software</owners>
<licenseUrl>https://github.com/10Duke/10duke-dotnet-client/blob/master/LICENSE</licenseUrl>
<license type="expression">MIT</license>
<projectUrl>https://github.com/10Duke/10duke-dotnet-client</projectUrl>
<iconUrl>https://raw.githubusercontent.com/10Duke/10duke-dotnet-client/master/10duke.ico</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>$description$</description>
<releaseNotes>- Update CefSharp to 88.2.90
- Add support for additional claims in license consumption requests
</releaseNotes>
<releaseNotes>Support reading signer key from server JWKS endpoint, fix public key serialization with .NET Core, and update dependency versions</releaseNotes>
<copyright>Copyright © 2019- 10Duke Software</copyright>
<tags>Entitlement Licensing Identity 10Duke Desktop</tags>
<repository url="https://github.com/10Duke/10duke-dotnet-client.git" />
</metadata>
</package>
4 changes: 4 additions & 0 deletions Tenduke.Client.Desktop/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
<package id="Microsoft.CSharp" version="4.7.0" targetFramework="net461" />
<package id="Microsoft.Extensions.Configuration.Abstractions" version="6.0.0" targetFramework="net461" />
<package id="Microsoft.Extensions.Primitives" version="6.0.0" targetFramework="net461" />
<package id="Microsoft.IdentityModel.Logging" version="6.15.0" targetFramework="net461" />
<package id="Microsoft.IdentityModel.Tokens" version="6.15.0" targetFramework="net461" />
<package id="Microsoft.Win32.Registry" version="5.0.0" targetFramework="net461" />
<package id="Newtonsoft.Json" version="13.0.1" targetFramework="net461" />
<package id="System.Buffers" version="4.5.1" targetFramework="net461" />
Expand All @@ -19,4 +21,6 @@
<package id="System.Security.AccessControl" version="6.0.0" targetFramework="net461" />
<package id="System.Security.Principal.Windows" version="5.0.0" targetFramework="net461" />
<package id="System.ValueTuple" version="4.5.0" targetFramework="net461" />
<package id="Tenduke.Client" version="3.3.1" targetFramework="net461" />
<package id="Tenduke.Client.WinBase" version="3.3.1" targetFramework="net461" />
</packages>
4 changes: 2 additions & 2 deletions Tenduke.Client.WPF/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@
// 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("3.2.1.0")]
[assembly: AssemblyFileVersion("3.2.1.0")]
[assembly: AssemblyVersion("3.3.1.0")]
[assembly: AssemblyFileVersion("3.3.1.0")]

35 changes: 21 additions & 14 deletions Tenduke.Client.WPF/Tenduke.Client.WPF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<CefSharpAnyCpuSupport>true</CefSharpAnyCpuSupport>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand All @@ -30,6 +32,8 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CefSharpAnyCpuSupport>true</CefSharpAnyCpuSupport>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand All @@ -40,6 +44,8 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CefSharpAnyCpuSupport>true</CefSharpAnyCpuSupport>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
Expand All @@ -63,6 +69,12 @@
<Reference Include="Microsoft.Extensions.Primitives, Version=6.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.Extensions.Primitives.6.0.0\lib\net461\Microsoft.Extensions.Primitives.dll</HintPath>
</Reference>
<Reference Include="Microsoft.IdentityModel.Logging, Version=6.15.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.IdentityModel.Logging.6.15.0\lib\net461\Microsoft.IdentityModel.Logging.dll</HintPath>
</Reference>
<Reference Include="Microsoft.IdentityModel.Tokens, Version=6.15.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.IdentityModel.Tokens.6.15.0\lib\net461\Microsoft.IdentityModel.Tokens.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Win32.Registry, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.Win32.Registry.5.0.0\lib\net461\Microsoft.Win32.Registry.dll</HintPath>
</Reference>
Expand Down Expand Up @@ -124,6 +136,15 @@
<Reference Include="System.Xaml">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="Tenduke.Client, Version=3.3.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Tenduke.Client.3.3.1\lib\netstandard2.0\Tenduke.Client.dll</HintPath>
</Reference>
<Reference Include="Tenduke.Client.Desktop, Version=3.3.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Tenduke.Client.Desktop.3.3.1\lib\net461\Tenduke.Client.Desktop.dll</HintPath>
</Reference>
<Reference Include="Tenduke.Client.WinBase, Version=3.3.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Tenduke.Client.WinBase.3.3.1\lib\netstandard2.0\Tenduke.Client.WinBase.dll</HintPath>
</Reference>
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
Expand Down Expand Up @@ -241,20 +262,6 @@
<Content Include="libEGL.dll" />
<Content Include="libGLESv2.dll" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Tenduke.Client.Desktop\Tenduke.Client.Desktop.csproj">
<Project>{bb3b0629-a838-4beb-bff0-32aaff87e37d}</Project>
<Name>Tenduke.Client.Desktop</Name>
</ProjectReference>
<ProjectReference Include="..\Tenduke.Client.WinBase\Tenduke.Client.WinBase.csproj">
<Project>{8930610c-b2ca-4167-a6b0-b4a10676bb54}</Project>
<Name>Tenduke.Client.WinBase</Name>
</ProjectReference>
<ProjectReference Include="..\Tenduke.Client\Tenduke.Client.csproj">
<Project>{b5112486-55f1-4fb7-9239-bd32a8bbfab7}</Project>
<Name>Tenduke.Client</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
Expand Down
7 changes: 3 additions & 4 deletions Tenduke.Client.WPF/Tenduke.Client.WPF.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@
<title>$title$</title>
<authors>10Duke Software</authors>
<owners>10Duke Software</owners>
<licenseUrl>https://github.com/10Duke/10duke-dotnet-client/blob/master/LICENSE</licenseUrl>
<license type="expression">MIT</license>
<projectUrl>https://github.com/10Duke/10duke-dotnet-client</projectUrl>
<iconUrl>https://raw.githubusercontent.com/10Duke/10duke-dotnet-client/master/10duke.ico</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>$description$</description>
<releaseNotes>- Update CefSharp to 88.2.90
- Add support for additional claims in license consumption requests
</releaseNotes>
<releaseNotes>Support reading signer key from server JWKS endpoint, fix public key serialization with .NET Core, and update dependency versions</releaseNotes>
<copyright>Copyright © 2018- 10Duke Software</copyright>
<tags>Entitlement Licensing Identity 10Duke Desktop WPF</tags>
<repository url="https://github.com/10Duke/10duke-dotnet-client.git" />
</metadata>
</package>
5 changes: 5 additions & 0 deletions Tenduke.Client.WPF/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
<package id="Microsoft.CSharp" version="4.7.0" targetFramework="net461" />
<package id="Microsoft.Extensions.Configuration.Abstractions" version="6.0.0" targetFramework="net461" />
<package id="Microsoft.Extensions.Primitives" version="6.0.0" targetFramework="net461" />
<package id="Microsoft.IdentityModel.Logging" version="6.15.0" targetFramework="net461" />
<package id="Microsoft.IdentityModel.Tokens" version="6.15.0" targetFramework="net461" />
<package id="Microsoft.Win32.Registry" version="5.0.0" targetFramework="net461" />
<package id="Newtonsoft.Json" version="13.0.1" targetFramework="net461" />
<package id="System.Buffers" version="4.5.1" targetFramework="net461" />
Expand All @@ -22,4 +24,7 @@
<package id="System.Security.Permissions" version="6.0.0" targetFramework="net461" />
<package id="System.Security.Principal.Windows" version="5.0.0" targetFramework="net461" />
<package id="System.ValueTuple" version="4.5.0" targetFramework="net461" />
<package id="Tenduke.Client" version="3.3.1" targetFramework="net461" />
<package id="Tenduke.Client.Desktop" version="3.3.1" targetFramework="net461" />
<package id="Tenduke.Client.WinBase" version="3.3.1" targetFramework="net461" />
</packages>
30 changes: 12 additions & 18 deletions Tenduke.Client.WPFSample/Tenduke.Client.WPFSample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,18 @@
<Reference Include="System.Xaml">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="Tenduke.Client, Version=3.3.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Tenduke.Client.3.3.1\lib\netstandard2.0\Tenduke.Client.dll</HintPath>
</Reference>
<Reference Include="Tenduke.Client.Desktop, Version=3.3.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Tenduke.Client.Desktop.3.3.1\lib\net461\Tenduke.Client.Desktop.dll</HintPath>
</Reference>
<Reference Include="Tenduke.Client.WinBase, Version=3.3.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Tenduke.Client.WinBase.3.3.1\lib\netstandard2.0\Tenduke.Client.WinBase.dll</HintPath>
</Reference>
<Reference Include="Tenduke.Client.WPF, Version=3.3.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Tenduke.Client.WPF.3.3.1\lib\net461\Tenduke.Client.WPF.dll</HintPath>
</Reference>
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
Expand Down Expand Up @@ -180,24 +192,6 @@
<ItemGroup>
<Resource Include="10duke.ico" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Tenduke.Client.Desktop\Tenduke.Client.Desktop.csproj">
<Project>{bb3b0629-a838-4beb-bff0-32aaff87e37d}</Project>
<Name>Tenduke.Client.Desktop</Name>
</ProjectReference>
<ProjectReference Include="..\Tenduke.Client.WinBase\Tenduke.Client.WinBase.csproj">
<Project>{8930610c-b2ca-4167-a6b0-b4a10676bb54}</Project>
<Name>Tenduke.Client.WinBase</Name>
</ProjectReference>
<ProjectReference Include="..\Tenduke.Client.WPF\Tenduke.Client.WPF.csproj">
<Project>{c7354410-7bb2-4ad5-880a-68b8cbaf908d}</Project>
<Name>Tenduke.Client.WPF</Name>
</ProjectReference>
<ProjectReference Include="..\Tenduke.Client\Tenduke.Client.csproj">
<Project>{b5112486-55f1-4fb7-9239-bd32a8bbfab7}</Project>
<Name>Tenduke.Client</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
Expand Down
Loading

0 comments on commit 07c950d

Please sign in to comment.