diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2021-11-29 21:24:44 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2021-11-29 21:24:44 +0300 |
commit | 3ea18ae25e98527aa85835c9221ea01b36560b33 (patch) | |
tree | ca5ffb4f60b1c1b683e9094cec44d9431d3d1bb6 /Rehau.Sku.Assist.csproj | |
parent | f3b6bfcd3e13519f648c3975d19b8f1d48130059 (diff) |
Add Uri Converter
Diffstat (limited to 'Rehau.Sku.Assist.csproj')
-rw-r--r-- | Rehau.Sku.Assist.csproj | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/Rehau.Sku.Assist.csproj b/Rehau.Sku.Assist.csproj index 5b7438a..6667639 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,9 @@ <HintPath>packages\ExcelDna.Registration.1.5.0\lib\net452\ExcelDna.Registration.dll</HintPath> <Private>True</Private> </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 +85,13 @@ <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\ExcelDNA\AddIn.cs" /> + <Compile Include="Source\Assistant\IProduct.cs" /> + <Compile Include="Source\Assistant\Product.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 +106,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 |