-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAtlasd.csproj
More file actions
66 lines (57 loc) · 2.24 KB
/
Atlasd.csproj
File metadata and controls
66 lines (57 loc) · 2.24 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<Description>Atlas is cross-platform software that emulates Classic Battle.net in a compatible model for Diablo, StarCraft, and WarCraft.</Description>
<Copyright>© 2020-2021 Carl Bennett <[email protected]></Copyright>
<Company>BNETDocs</Company>
<Product>Atlas</Product>
<Authors>Caaaaarrrrlll <[email protected]></Authors>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageProjectUrl>https://github.com/BNETDocs/Atlas</PackageProjectUrl>
<RepositoryUrl>https://github.com/BNETDocs/Atlas</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageTags>Atlas, Battle.net, Blizzard, Classic, Diablo, Emulation, Linux, StarCraft, WarCraft, Windows</PackageTags>
<AssemblyName>atlasd</AssemblyName>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AssemblyVersion>0.1.0.0</AssemblyVersion>
<FileVersion>0.1.0.0</FileVersion>
<Version>0.1.0.0</Version>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Optimize>false</Optimize>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\LICENSE.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Localization\Resources.de.resx">
<Generator></Generator>
</EmbeddedResource>
<EmbeddedResource Update="Localization\Resources.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MaxMind.GeoIP2" Version="5.1.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\vendor\MBNCSUtil\src\MBNCSUtil.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="Localization\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
</Project>