about summary refs log tree commit diff
path: root/LibMatrix.Federation/LibMatrix.Federation.csproj
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-06-17 14:20:27 +0200
committerRory& <root@rory.gay>2025-06-17 14:20:27 +0200
commit0e79e4e17903528d183cc55f6a345029b8203eed (patch)
tree9740ec1708ac534c737ad078224767793d4327f2 /LibMatrix.Federation/LibMatrix.Federation.csproj
parentRoom builder, support managing room dir (diff)
downloadLibMatrix-master.tar.xz
Start of federation code HEAD master
Diffstat (limited to 'LibMatrix.Federation/LibMatrix.Federation.csproj')
-rw-r--r--LibMatrix.Federation/LibMatrix.Federation.csproj19
1 files changed, 19 insertions, 0 deletions
diff --git a/LibMatrix.Federation/LibMatrix.Federation.csproj b/LibMatrix.Federation/LibMatrix.Federation.csproj
new file mode 100644

index 0000000..78086bb --- /dev/null +++ b/LibMatrix.Federation/LibMatrix.Federation.csproj
@@ -0,0 +1,19 @@ +<Project Sdk="Microsoft.NET.Sdk"> + + <PropertyGroup> + <TargetFramework>net9.0</TargetFramework> + <LangVersion>preview</LangVersion> + <ImplicitUsings>enable</ImplicitUsings> + <Nullable>enable</Nullable> + </PropertyGroup> + + <ItemGroup> + <ProjectReference Include="..\LibMatrix\LibMatrix.csproj" /> + </ItemGroup> + + <ItemGroup> + <PackageReference Include="BouncyCastle.Cryptography" Version="2.6.1" /> + <PackageReference Include="Microsoft.Extensions.Primitives" Version="10.0.0-preview.5.25277.114" /> + </ItemGroup> + +</Project>