Initial commit
This commit is contained in:
commit
4e795fddc7
37 changed files with 3269 additions and 0 deletions
66
ProjectMakoto.Plugins.Social.csproj
Normal file
66
ProjectMakoto.Plugins.Social.csproj
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Import Project="MSBuild.props" />
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<PackageOutputPath>$(OutputPath)</PackageOutputPath>
|
||||
<BaseOutputPath>bin\</BaseOutputPath>
|
||||
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>
|
||||
<ValidateArchitecture>false</ValidateArchitecture>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||
<DebugType>embedded</DebugType>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||||
<DebugType>embedded</DebugType>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Remove="deps\**" />
|
||||
<Compile Remove="SourceGen\**" />
|
||||
<Compile Remove="Tools\**" />
|
||||
<EmbeddedResource Remove="deps\**" />
|
||||
<EmbeddedResource Remove="SourceGen\**" />
|
||||
<EmbeddedResource Remove="Tools\**" />
|
||||
<None Remove="deps\**" />
|
||||
<None Remove="SourceGen\**" />
|
||||
<None Remove="Tools\**" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="Octokit">
|
||||
<HintPath>deps\Octokit.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="ProjectMakoto">
|
||||
<HintPath>deps\ProjectMakoto.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="DisCatSharp">
|
||||
<HintPath>deps\DisCatSharp.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="DisCatSharp.Common">
|
||||
<HintPath>deps\DisCatSharp.Common.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="DisCatSharp.ApplicationCommands">
|
||||
<HintPath>deps\DisCatSharp.ApplicationCommands.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="DisCatSharp.CommandsNext">
|
||||
<HintPath>deps\DisCatSharp.CommandsNext.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xorog.UniversalExtensions">
|
||||
<HintPath>deps\Xorog.UniversalExtensions.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Update="Translations\strings.json">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
Loading…
Add table
Add a link
Reference in a new issue