This repository contains common libraries for other projects of the UXIsk software infrastructure.
Further libraries are separated into own repositories:
- UXI.Serialization library for writing and reading data streams with serialization.
- UXI.Filters framework for creating data filtering applications.
UXI.Libs are available as NuGet packages in the public Azure DevOps artifacts repository for all UXIsk packages:
https://pkgs.dev.azure.com/uxifiit/Packages/_packaging/Public/nuget/v3/index.json
First, add a new package source. Choose the way that fits you the best:
- Add new package source in Visual Studio settings.
- Add new package source from command line:
nuget source Add -Name "UXIsk Packages" -Source "https://pkgs.dev.azure.com/uxifiit/Packages/_packaging/Public/nuget/v3/index.json"
- Create or edit
NuGet.config
file in your project's solution directory where you specify this package source:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="UXIsk Packages" value="https://pkgs.dev.azure.com/uxifiit/Packages/_packaging/Public/nuget/v3/index.json" />
<!-- other package sources -->
</packageSources>
<disabledPackageSources />
</configuration>
Use the Visual Studio "Manage NuGet Packages..." window or the Package Manager Console:
PM> Install-Package <Library>
- Martin Konôpka - @martinkonopka
Projects in this repository are licensed under the MIT License - see LICENSE.txt.
- UXIsk
- User eXperience and Interaction Research Center
- Faculty of Informatics and Information Technologies, Slovak University of Technology in Bratislava
- Web: https://www.uxi.sk/
- Martin Konopka
- E-mail: martin (underscore) konopka (at) stuba (dot) sk