mirror of
https://github.com/snltty/linker.git
synced 2025-12-18 09:26:44 +08:00
48 lines
2.1 KiB
XML
48 lines
2.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net8.0</TargetFrameworks>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>disable</Nullable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<PublishAot>false</PublishAot>
|
|
<JsonSerializerIsReflectionEnabledByDefault>true</JsonSerializerIsReflectionEnabledByDefault>
|
|
<EnablePreviewFeatures>True</EnablePreviewFeatures>
|
|
<Title>linker messenger api action</Title>
|
|
<Authors>snltty</Authors>
|
|
<Company>snltty</Company>
|
|
<Description>linker messenger api action</Description>
|
|
<Copyright>snltty</Copyright>
|
|
<PackageProjectUrl>https://github.com/snltty/linker</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/snltty/linker</RepositoryUrl>
|
|
<PackageReleaseNotes>linker messenger api action</PackageReleaseNotes>
|
|
<Version>1.8.3</Version>
|
|
<AssemblyVersion>1.8.3</AssemblyVersion>
|
|
<FileVersion>1.8.3</FileVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DebugType>full</DebugType>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DebugType>full</DebugType>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<Optimize>True</Optimize>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0|AnyCPU'">
|
|
<DebugType>embedded</DebugType>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0|AnyCPU'">
|
|
<DebugType>embedded</DebugType>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\linker.libs\linker.libs.csproj" />
|
|
<ProjectReference Include="..\linker.messenger.api\linker.messenger.api.csproj" />
|
|
<ProjectReference Include="..\linker.messenger.relay\linker.messenger.relay.csproj" />
|
|
<ProjectReference Include="..\linker.messenger.sforward\linker.messenger.sforward.csproj" />
|
|
<ProjectReference Include="..\linker.messenger.signin\linker.messenger.signin.csproj" />
|
|
<ProjectReference Include="..\linker.messenger\linker.messenger.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|