19 lines
559 B
XML
19 lines
559 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<AssemblyName>InputHelper.Tests</AssemblyName>
|
|
<RootNamespace>GenshinAssistant.InputHelper.Tests</RootNamespace>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<SelfContained>true</SelfContained>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\input-helper\InputHelper.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|