-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAutoAcceptInvite.csproj
More file actions
80 lines (78 loc) · 3.53 KB
/
AutoAcceptInvite.csproj
File metadata and controls
80 lines (78 loc) · 3.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Authors>SnepDrone</Authors>
<Product>AutoAcceptInvite</Product>
<Description>Automatically accept invites or invite requests from trusted friends.</Description>
<Version>2.0.4</Version>
<Copyright>© 2025 $(Authors)</Copyright>
<AssemblyVersion>$(Version)</AssemblyVersion>
<AssemblyTitle>$(Product)</AssemblyTitle>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{a86de841-e193-4e15-b7a5-0c7256df85b5}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>AutoAcceptInvite</RootNamespace>
<AssemblyName>AutoAcceptInvite</AssemblyName>
<TargetFramework>net10.0</TargetFramework>
<FileAlignment>512</FileAlignment>
<LangVersion>14</LangVersion>
<Nullable>enable</Nullable>
<Deterministic>true</Deterministic>
<ImplicitUsings>enable</ImplicitUsings>
<EnableNETAnalyzers>True</EnableNETAnalyzers>
<AnalysisLevel>10.0-Recommended</AnalysisLevel>
<CopyToMods Condition="'$(CopyToMods)'==''">true</CopyToMods>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="SkyFrost.Base">
<HintPath>$(ResonitePath)SkyFrost.Base.dll</HintPath>
</Reference>
<Reference Include="SkyFrost.Base.Models">
<HintPath>$(ResonitePath)SkyFrost.Base.Models.dll</HintPath>
</Reference>
<Reference Include="0Harmony">
<HintPath>$(ResonitePath)rml_libs\0Harmony.dll</HintPath>
</Reference>
<Reference Include="Elements.Core">
<HintPath>$(ResonitePath)Elements.Core.dll</HintPath>
</Reference>
<Reference Include="FrooxEngine">
<HintPath>$(ResonitePath)FrooxEngine.dll</HintPath>
</Reference>
<Reference Include="FrooxEngine.Store">
<HintPath>$(ResonitePath)FrooxEngine.Store.dll</HintPath>
</Reference>
<Reference Include="ResoniteModLoader">
<HintPath>$(ResonitePath)Libraries\ResoniteModLoader.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Content Include=".github\workflows\modlist.yml" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Copy SourceFiles="$(OutDir)$(TargetFileName)" DestinationFolder="$(ResonitePath)rml_mods" Condition="'$(CopyToMods)'=='true'"/>
<Message Text="Copied $(TargetFileName) to $(ResonitePath)rml_mods" Importance="high"/>
</Target>
</Project>