-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVRCWMT.csproj
71 lines (62 loc) · 2.33 KB
/
VRCWMT.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<StartupObject>VRCWMT.Startup</StartupObject>
<PlatformTarget>x64</PlatformTarget>
<ApplicationIcon>VRCWMT.ico</ApplicationIcon>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<FileVersion>0.5.0</FileVersion>
<AssemblyVersion>$(FileVersion).0</AssemblyVersion>
<Version>$(FileVersion)</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<Content Include="VRCWMT.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="KPreisser.UI.TaskDialog" Version="1.0.0" />
<PackageReference Include="MagmaMc.BetterForms" Version="0.3.6" />
<PackageReference Include="MagmaMc.JEF" Version="5.0.1" />
<PackageReference Include="MagmaMc.MagmaSimpleConfig" Version="2.1.1" />
<PackageReference Include="MagmaMc.UAS" Version="0.2.1" />
</ItemGroup>
<ItemGroup>
<Reference Include="MagmaMC.SharedLibrary">
<HintPath>Libraries/MagmaMC.SharedLibrary.dll</HintPath>
<DocumentationFile>Libraries/MagmaMC.SharedLibrary.xml</DocumentationFile>
</Reference>
<Reference Include="OpenVRChatAPI">
<HintPath>Libraries/OpenVRChatAPI.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Update="SettingsWindow.cs" />
<Compile Update="PlayerInfo.cs" />
<Compile Update="AddGroup.cs" />
<Compile Update="AppResources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>AppResources.resx</DependentUpon>
</Compile>
<Compile Update="AddWorld.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="WelcomeWizard.cs" />
<Compile Update="AddPlayer.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="AppResources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>AppResources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>