Skip to content

Commit

Permalink
Migrate WPFSKillTree and UpdateDB to new csproj format
Browse files Browse the repository at this point in the history
  • Loading branch information
brather1ng committed Jun 21, 2019
1 parent c944929 commit c5c3e0d
Show file tree
Hide file tree
Showing 6 changed files with 84 additions and 1,030 deletions.
116 changes: 15 additions & 101 deletions UpdateDB/UpdateDB.csproj
@@ -1,112 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\packages\Microsoft.Net.Compilers.2.10.0\build\Microsoft.Net.Compilers.props" Condition="Exists('..\packages\Microsoft.Net.Compilers.2.10.0\build\Microsoft.Net.Compilers.props')" />
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{E69F0C33-980E-4A6B-BAEA-B8D41A93A481}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>UpdateDB</RootNamespace>
<AssemblyName>UpdateDB</AssemblyName>
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<TargetFramework>net462</TargetFramework>
<LangVersion>latest</LangVersion>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'x86' ">
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="log4net, Version=2.0.8.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
<HintPath>..\packages\log4net.2.0.8\lib\net45-full\log4net.dll</HintPath>
</Reference>
<Reference Include="MoreLinq, Version=3.1.0.0, Culture=neutral, PublicKeyToken=384d532d7e88985d, processorArchitecture=MSIL">
<HintPath>..\packages\morelinq.3.1.0\lib\net451\MoreLinq.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.12.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
<Reference Include="System.Net.Http" />
<Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll</HintPath>
</Reference>
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="DataLoaderExecuter.cs" />
<Compile Include="DataLoading\DataLoader.cs" />
<Compile Include="DataLoading\ItemBaseLoader.cs" />
<Compile Include="DataLoading\ItemImageLoader.cs" />
<Compile Include="DataLoading\RePoELoader.cs" />
<Compile Include="DataLoading\SkillTreeLoader.cs" />
<Compile Include="DataLoading\UniqueLoader.cs" />
<Compile Include="DataLoading\XmlDataLoader.cs" />
<Compile Include="IArguments.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<PackageReference Include="System.Net.Http" Version="4.*" />
<PackageReference Include="Microsoft.CSharp" Version="4.*" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="Log4Net.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="packages.config" />
<PackageReference Include="log4net" Version="2.0.8" />
<PackageReference Include="Microsoft.Net.Compilers" Version="2.10.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="morelinq" Version="3.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PoESkillTree.Utils\PoESkillTree.Utils.csproj">
<Project>{1f11d13c-9039-40ab-8b91-8a03e4da934a}</Project>
<Name>PoESkillTree.Utils</Name>
</ProjectReference>
<ProjectReference Include="..\PoESkillTree.GameModel\PoESkillTree.GameModel.csproj">
<Project>{c1c73cc9-d825-41f7-86f0-f37ee8178d6d}</Project>
<Name>PoESkillTree.GameModel</Name>
</ProjectReference>
<ProjectReference Include="..\WPFSKillTree\WPFSKillTree.csproj">
<Project>{fcda18d8-4fd9-484b-b7dc-dbf771b3aec7}</Project>
<Name>WPFSKillTree</Name>
</ProjectReference>
<ProjectReference Include="..\PoESkillTree.Utils\PoESkillTree.Utils.csproj" />
<ProjectReference Include="..\PoESkillTree.GameModel\PoESkillTree.GameModel.csproj" />
<ProjectReference Include="..\WPFSKillTree\WPFSKillTree.csproj" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\packages\Microsoft.Net.Compilers.2.10.0\build\Microsoft.Net.Compilers.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Net.Compilers.2.10.0\build\Microsoft.Net.Compilers.props'))" />
</Target>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
8 changes: 0 additions & 8 deletions UpdateDB/packages.config

This file was deleted.

41 changes: 20 additions & 21 deletions WPFSKillTree.sln
@@ -1,42 +1,41 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27130.2020
# Visual Studio Version 16
VisualStudioVersion = 16.0.29009.5
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WPFSKillTree", "WPFSKillTree\WPFSKillTree.csproj", "{FCDA18D8-4FD9-484B-B7DC-DBF771B3AEC7}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WPFSKillTree", "WPFSKillTree\WPFSKillTree.csproj", "{FCDA18D8-4FD9-484B-B7DC-DBF771B3AEC7}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UpdateDB", "UpdateDB\UpdateDB.csproj", "{E69F0C33-980E-4A6B-BAEA-B8D41A93A481}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UpdateDB", "UpdateDB\UpdateDB.csproj", "{E69F0C33-980E-4A6B-BAEA-B8D41A93A481}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoESkillTree.Computation.Core", "PoESkillTree.Computation.Core\PoESkillTree.Computation.Core.csproj", "{E9C0CF81-6800-4461-8897-F8B569C7CDD0}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PoESkillTree.Computation.Core", "PoESkillTree.Computation.Core\PoESkillTree.Computation.Core.csproj", "{E9C0CF81-6800-4461-8897-F8B569C7CDD0}"
ProjectSection(ProjectDependencies) = postProject
{827BE52D-878C-45F0-AFC0-75B5385AAD53} = {827BE52D-878C-45F0-AFC0-75B5385AAD53}
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoESkillTree.Utils", "PoESkillTree.Utils\PoESkillTree.Utils.csproj", "{1F11D13C-9039-40AB-8B91-8A03E4DA934A}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PoESkillTree.Utils", "PoESkillTree.Utils\PoESkillTree.Utils.csproj", "{1F11D13C-9039-40AB-8B91-8A03E4DA934A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoESkillTree.Computation.Data", "PoESkillTree.Computation.Data\PoESkillTree.Computation.Data.csproj", "{85CF9690-7EB9-42CB-9574-ADF4239CFFBE}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PoESkillTree.Computation.Data", "PoESkillTree.Computation.Data\PoESkillTree.Computation.Data.csproj", "{85CF9690-7EB9-42CB-9574-ADF4239CFFBE}"
ProjectSection(ProjectDependencies) = postProject
{827BE52D-878C-45F0-AFC0-75B5385AAD53} = {827BE52D-878C-45F0-AFC0-75B5385AAD53}
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoESkillTree.Computation.Data.Tests", "PoESkillTree.Computation.Data.Tests\PoESkillTree.Computation.Data.Tests.csproj", "{F5DF3138-0C63-48B4-9908-50CADA452224}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PoESkillTree.Computation.Data.Tests", "PoESkillTree.Computation.Data.Tests\PoESkillTree.Computation.Data.Tests.csproj", "{F5DF3138-0C63-48B4-9908-50CADA452224}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoESkillTree.Computation.Parsing", "PoESkillTree.Computation.Parsing\PoESkillTree.Computation.Parsing.csproj", "{1E573C72-9B7F-40AF-A5E8-739F90B50690}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PoESkillTree.Computation.Parsing", "PoESkillTree.Computation.Parsing\PoESkillTree.Computation.Parsing.csproj", "{1E573C72-9B7F-40AF-A5E8-739F90B50690}"
ProjectSection(ProjectDependencies) = postProject
{827BE52D-878C-45F0-AFC0-75B5385AAD53} = {827BE52D-878C-45F0-AFC0-75B5385AAD53}
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoESkillTree.Computation.Console", "PoESkillTree.Computation.Console\PoESkillTree.Computation.Console.csproj", "{AADCC052-3A9D-4513-9EAE-7AEACBF2DBCA}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PoESkillTree.Computation.Console", "PoESkillTree.Computation.Console\PoESkillTree.Computation.Console.csproj", "{AADCC052-3A9D-4513-9EAE-7AEACBF2DBCA}"
ProjectSection(ProjectDependencies) = postProject
{827BE52D-878C-45F0-AFC0-75B5385AAD53} = {827BE52D-878C-45F0-AFC0-75B5385AAD53}
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoESkillTree.Computation.Parsing.Tests", "PoESkillTree.Computation.Parsing.Tests\PoESkillTree.Computation.Parsing.Tests.csproj", "{0EFA2885-50A9-45C9-B1A1-701A83681C90}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PoESkillTree.Computation.Parsing.Tests", "PoESkillTree.Computation.Parsing.Tests\PoESkillTree.Computation.Parsing.Tests.csproj", "{0EFA2885-50A9-45C9-B1A1-701A83681C90}"
ProjectSection(ProjectDependencies) = postProject
{844B58AB-4D91-4567-BCA9-F3E1B2A29444} = {844B58AB-4D91-4567-BCA9-F3E1B2A29444}
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoESkillTree.Computation.IntegrationTests", "PoESkillTree.Computation.IntegrationTests\PoESkillTree.Computation.IntegrationTests.csproj", "{CE77F246-871D-4E8C-8E5F-B44EBDBF2541}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PoESkillTree.Computation.IntegrationTests", "PoESkillTree.Computation.IntegrationTests\PoESkillTree.Computation.IntegrationTests.csproj", "{CE77F246-871D-4E8C-8E5F-B44EBDBF2541}"
ProjectSection(ProjectDependencies) = postProject
{1F11D13C-9039-40AB-8B91-8A03E4DA934A} = {1F11D13C-9039-40AB-8B91-8A03E4DA934A}
{AADCC052-3A9D-4513-9EAE-7AEACBF2DBCA} = {AADCC052-3A9D-4513-9EAE-7AEACBF2DBCA}
Expand All @@ -45,27 +44,27 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoESkillTree.Computation.In
{85CF9690-7EB9-42CB-9574-ADF4239CFFBE} = {85CF9690-7EB9-42CB-9574-ADF4239CFFBE}
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoESkillTree.Computation.Common", "PoESkillTree.Computation.Common\PoESkillTree.Computation.Common.csproj", "{827BE52D-878C-45F0-AFC0-75B5385AAD53}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PoESkillTree.Computation.Common", "PoESkillTree.Computation.Common\PoESkillTree.Computation.Common.csproj", "{827BE52D-878C-45F0-AFC0-75B5385AAD53}"
ProjectSection(ProjectDependencies) = postProject
{1F11D13C-9039-40AB-8B91-8A03E4DA934A} = {1F11D13C-9039-40AB-8B91-8A03E4DA934A}
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoESkillTree.Computation.Common.Tests", "PoESkillTree.Computation.Common.Tests\PoESkillTree.Computation.Common.Tests.csproj", "{844B58AB-4D91-4567-BCA9-F3E1B2A29444}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PoESkillTree.Computation.Common.Tests", "PoESkillTree.Computation.Common.Tests\PoESkillTree.Computation.Common.Tests.csproj", "{844B58AB-4D91-4567-BCA9-F3E1B2A29444}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoESkillTree.Computation.Core.Tests", "PoESkillTree.Computation.Core.Tests\PoESkillTree.Computation.Core.Tests.csproj", "{02676C0A-817C-4D1D-BE32-640D6D5A9937}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PoESkillTree.Computation.Core.Tests", "PoESkillTree.Computation.Core.Tests\PoESkillTree.Computation.Core.Tests.csproj", "{02676C0A-817C-4D1D-BE32-640D6D5A9937}"
ProjectSection(ProjectDependencies) = postProject
{844B58AB-4D91-4567-BCA9-F3E1B2A29444} = {844B58AB-4D91-4567-BCA9-F3E1B2A29444}
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoESkillTree.Computation.Builders", "PoESkillTree.Computation.Builders\PoESkillTree.Computation.Builders.csproj", "{940A286A-BCA7-4C79-AC89-55C57C7D4784}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PoESkillTree.Computation.Builders", "PoESkillTree.Computation.Builders\PoESkillTree.Computation.Builders.csproj", "{940A286A-BCA7-4C79-AC89-55C57C7D4784}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoESkillTree.Computation.Builders.Tests", "PoESkillTree.Computation.Builders.Tests\PoESkillTree.Computation.Builders.Tests.csproj", "{D6ECC468-961D-4C72-8E8F-DA9037B9B200}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PoESkillTree.Computation.Builders.Tests", "PoESkillTree.Computation.Builders.Tests\PoESkillTree.Computation.Builders.Tests.csproj", "{D6ECC468-961D-4C72-8E8F-DA9037B9B200}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoESkillTree.GameModel", "PoESkillTree.GameModel\PoESkillTree.GameModel.csproj", "{C1C73CC9-D825-41F7-86F0-F37EE8178D6D}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PoESkillTree.GameModel", "PoESkillTree.GameModel\PoESkillTree.GameModel.csproj", "{C1C73CC9-D825-41F7-86F0-F37EE8178D6D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoESkillTree.GameModel.Tests", "PoESkillTree.GameModel.Tests\PoESkillTree.GameModel.Tests.csproj", "{0664E11C-B04A-469F-A65D-40BFC94BC88D}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PoESkillTree.GameModel.Tests", "PoESkillTree.GameModel.Tests\PoESkillTree.GameModel.Tests.csproj", "{0664E11C-B04A-469F-A65D-40BFC94BC88D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WPFSKillTree.Tests", "WPFSKillTree.Tests\WPFSKillTree.Tests.csproj", "{172BA462-EB78-47C4-A85A-677FBD1A6A89}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WPFSKillTree.Tests", "WPFSKillTree.Tests\WPFSKillTree.Tests.csproj", "{172BA462-EB78-47C4-A85A-677FBD1A6A89}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down

0 comments on commit c5c3e0d

Please sign in to comment.