-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDiceWorks.csproj
More file actions
47 lines (41 loc) · 1.37 KB
/
DiceWorks.csproj
File metadata and controls
47 lines (41 loc) · 1.37 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<ApplicationIcon>DW_Icon.ico</ApplicationIcon>
<Version>1.1.1</Version>
<Description>A dice roller</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<FileVersion>1.1.1</FileVersion>
<NeutralLanguage>en-GB</NeutralLanguage>
<AssemblyVersion>1.1.1</AssemblyVersion>
<RepositoryUrl>https://github.com/ferrixio/DiceWorks</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<StartupObject>DiceWorks.App</StartupObject>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<Content Include="DW_Icon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MahApps.Metro.IconPacks.Material" Version="5.0.0" />
<PackageReference Include="MahApps.Metro.IconPacks.MaterialDesign" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="Models\" />
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<None Update="LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>