Skip to content

Commit

Permalink
(#63) Shared: move to the src directory
Browse files Browse the repository at this point in the history
  • Loading branch information
ForNeVeR committed Dec 31, 2022
1 parent d261b8a commit 899b690
Show file tree
Hide file tree
Showing 34 changed files with 9 additions and 11 deletions.
10 changes: 5 additions & 5 deletions WpfMath.sln
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ ProjectSection(SolutionItems) = preProject
.github\workflows\nuget.yml = .github\workflows\nuget.yml
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfMath.Shared", "WpfMath.Shared\WpfMath.Shared.csproj", "{F47FD7D7-3BFA-42BA-BEC6-68280596EE08}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfMath.Shared", "src\WpfMath.Shared\WpfMath.Shared.csproj", "{C9B5E02E-04FB-405F-9BEB-6CF4736939EB}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -68,10 +68,10 @@ Global
{F19E5FB1-EE6B-4A48-A522-41F30676BE41}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F19E5FB1-EE6B-4A48-A522-41F30676BE41}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F19E5FB1-EE6B-4A48-A522-41F30676BE41}.Release|Any CPU.Build.0 = Release|Any CPU
{F47FD7D7-3BFA-42BA-BEC6-68280596EE08}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F47FD7D7-3BFA-42BA-BEC6-68280596EE08}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F47FD7D7-3BFA-42BA-BEC6-68280596EE08}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F47FD7D7-3BFA-42BA-BEC6-68280596EE08}.Release|Any CPU.Build.0 = Release|Any CPU
{C9B5E02E-04FB-405F-9BEB-6CF4736939EB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C9B5E02E-04FB-405F-9BEB-6CF4736939EB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C9B5E02E-04FB-405F-9BEB-6CF4736939EB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C9B5E02E-04FB-405F-9BEB-6CF4736939EB}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
using System;

namespace WpfMath.Utils
{
#if NET452 // not needed for .NET Core 3.0+ because there are System.TupleExtensions
Expand Down
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions src/WpfMath/WpfMath.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net452</TargetFrameworks>
<UseWpf>true</UseWpf>
Expand Down Expand Up @@ -42,15 +42,15 @@ Fixed:
<Resource Include="Fonts\cmr10.ttf" />
<Resource Include="Fonts\cmsy10.ttf" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\WpfMath.Shared\WpfMath.Shared.csproj" />
<ProjectReference Include="..\WpfMath.Shared\WpfMath.Shared.csproj" />
</ItemGroup>

<ItemGroup>
<InternalsVisibleTo Include="$(AssemblyName).Tests" />
</ItemGroup>
Expand Down

0 comments on commit 899b690

Please sign in to comment.