ticket-system/source/ticketAPI/api/api.csproj
Tara Wilson 3bb86da5c0 Adding Mongo Support
Building out UI
Building out API
Refactoring
Cleaning up
2024-11-29 14:48:17 -05:00

25 lines
625 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\data\data.csproj" />
<ProjectReference Include="..\models\models.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="QRCoder" Version="1.6.0" />
</ItemGroup>
<ItemGroup>
<None Update="Assets\pso-logo.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>