diff options
author | Serghei Cebotari <51533848+schebotar@users.noreply.github.com> | 2021-12-03 23:07:10 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-03 23:07:10 +0300 |
commit | f6f6678ccf54f0513726fbb61a99d437ed68bb81 (patch) | |
tree | c7a0b8ef9ea39a8c7c801b41ff37ff544c73d3bf /Rehau.Sku.Assist.csproj | |
parent | f5799a28eaef3f3ea24ba56dc16970d6203b73fd (diff) | |
parent | 4acde8a85b29ca968739bf1bf38d614a2830f6e7 (diff) |
Merge pull request #6 from schebotar/dev
Dev
Diffstat (limited to 'Rehau.Sku.Assist.csproj')
-rw-r--r-- | Rehau.Sku.Assist.csproj | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/Rehau.Sku.Assist.csproj b/Rehau.Sku.Assist.csproj index 5b7438a..87bd1e0 100644 --- a/Rehau.Sku.Assist.csproj +++ b/Rehau.Sku.Assist.csproj @@ -1,5 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <Import Project="packages\NUnit3TestAdapter.4.1.0\build\net35\NUnit3TestAdapter.props" Condition="Exists('packages\NUnit3TestAdapter.4.1.0\build\net35\NUnit3TestAdapter.props')" /> + <Import Project="packages\NUnit.3.13.2\build\NUnit.props" Condition="Exists('packages\NUnit.3.13.2\build\NUnit.props')" /> <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> @@ -46,6 +48,12 @@ <HintPath>packages\ExcelDna.Registration.1.5.0\lib\net452\ExcelDna.Registration.dll</HintPath> <Private>True</Private> </Reference> + <Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"> + <HintPath>packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath> + </Reference> + <Reference Include="nunit.framework, Version=3.13.2.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL"> + <HintPath>packages\NUnit.3.13.2\lib\net45\nunit.framework.dll</HintPath> + </Reference> <Reference Include="System" /> <Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> <HintPath>packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll</HintPath> @@ -80,12 +88,14 @@ <Reference Include="WindowsBase" /> </ItemGroup> <ItemGroup> - <Compile Include="src\ExcelDNA\AddIn.cs" /> - <Compile Include="src\Assistant\IProduct.cs" /> - <Compile Include="src\Assistant\Product.cs" /> - <Compile Include="src\ExcelDNA\Functions.cs" /> + <Compile Include="Source\Assistant\HttpClientUtil.cs" /> + <Compile Include="Source\Assistant\StoreResponse.cs" /> + <Compile Include="Source\ExcelDNA\AddIn.cs" /> + <Compile Include="Source\Assistant\IProduct.cs" /> + <Compile Include="Source\ExcelDNA\Functions.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> - <Compile Include="src\Assistant\SkuAssist.cs" /> + <Compile Include="Source\Assistant\SkuAssist.cs" /> + <Compile Include="Tests\SkuAssistTests.cs" /> </ItemGroup> <ItemGroup> <None Include="app.config" /> @@ -100,5 +110,7 @@ <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\ExcelDna.AddIn.1.5.0\build\ExcelDna.AddIn.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\ExcelDna.AddIn.1.5.0\build\ExcelDna.AddIn.targets'))" /> + <Error Condition="!Exists('packages\NUnit.3.13.2\build\NUnit.props')" Text="$([System.String]::Format('$(ErrorText)', 'packages\NUnit.3.13.2\build\NUnit.props'))" /> + <Error Condition="!Exists('packages\NUnit3TestAdapter.4.1.0\build\net35\NUnit3TestAdapter.props')" Text="$([System.String]::Format('$(ErrorText)', 'packages\NUnit3TestAdapter.4.1.0\build\net35\NUnit3TestAdapter.props'))" /> </Target> </Project>
\ No newline at end of file |