12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0-windows</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- <UseWpf>true</UseWpf>
- <LangVersion>default</LangVersion>
- <Configurations>Debug;Release;Test;DebugDev</Configurations>
- <Platforms>AnyCPU;x64</Platforms>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\inabox\inabox.client.rest\InABox.Client.Rest\InABox.Client.Rest.csproj" />
- <ProjectReference Include="..\..\InABox\InABox.Database\InABox.Database.csproj" />
- <ProjectReference Include="..\..\inabox\inabox.mailer.exchange\InABox.Mailer.Exchange.csproj" />
- <ProjectReference Include="..\..\inabox\inabox.mailer.imap\InABox.Mailer.IMAP.csproj" />
- <ProjectReference Include="..\..\inabox\InABox.Poster.CSV\InABox.Poster.CSV.csproj" />
- <ProjectReference Include="..\..\inabox\InABox.Poster.MYOB\InABox.Poster.MYOB.csproj" />
- <ProjectReference Include="..\..\inabox\InABox.Poster.Timberline\InABox.Poster.Timberline.csproj" />
- <ProjectReference Include="..\..\InABox\InABox.WPF\InABox.Wpf.csproj" />
- <ProjectReference Include="..\PRS.Classes\PRSClasses.csproj" />
- <ProjectReference Include="..\prs.stores\PRSStores.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Compile Update="Resources.Designer.cs">
- <DesignTime>True</DesignTime>
- <AutoGen>True</AutoGen>
- <DependentUpon>Resources.resx</DependentUpon>
- </Compile>
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Update="Resources.resx">
- <Generator>ResXFileCodeGenerator</Generator>
- <LastGenOutput>Resources.Designer.cs</LastGenOutput>
- </EmbeddedResource>
- </ItemGroup>
- <ItemGroup>
- <Page Update="Forms\NotesForm.xaml">
- <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
- <SubType>Designer</SubType>
- </Page>
- <Page Update="Forms\ScheduleForm.xaml">
- <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
- <SubType>Designer</SubType>
- </Page>
- </ItemGroup>
- <ItemGroup>
- <Folder Include="Resources\" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="RestSharp" Version="111.2.0" />
- <PackageReference Include="System.Collections.Immutable" Version="9.0.6" />
- </ItemGroup>
-
- </Project>
|